不支持Python-HTTP版本

时间:2015-01-31 11:47:12

标签: python-2.7

这是我关于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'

0 个答案:

没有答案