Python - 对于 url,如何检查网络服务器是否可用或存在? (使困惑)
对于用户输入的url
:
检查是否有任何网络服务器托管该域名?
例如 :
url='laksjdfaksdfjajdfaljewoifjadslkjflkasjrlwkejk.com'
现在,上述 url 不存在,因此无需检查任何 HTTP 错误代码,因为没有服务器会回复。
那么,如何检测这样的url呢?
isServerUp() ?
For a url
entered by the user :
check that is any webserver hosting the domain name or not ?
For example :
url='laksjdfaksdfjajdfaljewoifjadslkjflkasjrlwkejk.com'
Now, the above url does-not exists, so there is no point of check for any HTTP error codes since, no server is there that will reply back.
So, how to detect such url ?
isServerUp() ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这应该会为您打开网址;显然改变了你想说的网址打不开的方式。文档是: http://docs.python.org/library/urllib2.html
编辑:固定缩进
This should open the url for you; obviously change how you want to say that the url has failed to open. The docs are: http://docs.python.org/library/urllib2.html
EDIT: Indentation fixed