这是我关于stackoverflow的第一个问题。我使用它3年来检查我的错误,谢天谢地,从来没有问过问题。
我是python的新手。我正在申请网页时收到标题中提到的错误。
不支持Python-HTTP版本
这是我的代码:
from urllib2 import Request, urlopen, URLError
req = Request(url)
try:
response = urlopen(req)
except URLError as e:
if hasattr(e, 'reason'):
print 'We failed to reach a server.'
print 'Reason: ', e.reason
elif hasattr(e, 'code'):
print 'The server couldn\'t fulfill the request.'
print 'Error code: ', e.code
else:
print 'fine'