下面代码是用python写的用来获取网页http状态码的脚本
#!/usr/bin/python
# -*- coding: utf-8 -*-
#encoding=utf-8
#Filename:states_code.py
import urllib2
url = 'http://HdhCmsTestbitsCN测试数据/'
response = None
try:
response = urllib2.urlopen(url,timeout=5)
except urllib2.URLError as e:
if hasattr(e, 'code'):
print 'Error code:',e.code
elif hasattr(e, 'reason'):
print 'Reason:',e.reason
finally:
if response:
response.close()
查看更多关于python中使用urllib2获取http请求状态码的代码例子的详细内容...
声明:本文来自网络,不代表【好得很程序员自学网】立场,转载请注明出处:http://www.haodehen.cn/did90248