urlopen error「Errno 10061」解决(附python 获取状态码)

urllib2.URLError: <urlopen error [Errno 10061] > 解决

10061 因为目标主机主动拒绝,连接不能建立。

意料之外的坑

IE浏览器中 工具 -> Internet选项 ->连接 ->局域网设置 ->取消代理服务器复选框

python 获取状态码

urllib2.urlopen(request).code

  • 1

或者

request = urllib2.Request(url, None, req_header)

try:

code = urllib2.urlopen(request).code

print("URL:" + url + " Statu:" + str(code))

except urllib2.HTTPError, e:

print("URL:" + url + " Status :" + str(e.code))

urlopen error「Errno 10061」解决(附python 获取状态码)

相关推荐