如何区分超时错误和Python中的其他`URLError`?

sat*_*oru 5 python http urllib2

如何URLError在Python中区分超时错误和其他?

编辑

当我抓到一个URLError,它可能是Temporary failure in name resolutiontimeout,或其他一些错误?我怎么能告诉彼此呢?

Mik*_*ton 5

我使用下面的选项2之类的代码......但是要获得全面的答案,请查看Michael Foord的urllib2页面

如果你使用下面的选项1或选项2,你可以通过查看e.code或者在except子句中添加尽可能多的智能和分支.e.reason

选项1:

from urllib2 import Request, urlopen, URLError, HTTPError
req = Request(someurl)
try:
    response = urlopen(req)
except HTTPError, e:
    print 'The server couldn\'t fulfill the request.'
    print 'Error code: ', e.code
except URLError, e:
    print 'We failed to reach a server.'
    print 'Reason: ', e.reason
else:
    # everything is fine
Run Code Online (Sandbox Code Playgroud)

选项2:

from urllib import urlencode
from urllib2 import Request
# insert other code here...
    error = False
    error_code = ""
    try:
        if method.upper()=="GET":
            response = urlopen(req)
        elif method.upper()=="POST":
            response = urlopen(req,data)
    except IOError, e:
        if hasattr(e, 'reason'):
            #print 'We failed to reach a server.'
            #print 'Reason: ', e.reason
            error = True
            error_code = e.reason
        elif hasattr(e, 'code'):
            #print 'The server couldn\'t fulfill the request.'
            #print 'Error code: ', e.code
            error = True
            error_code = e.code
    else:
        # info is dictionary of server parameters, such as 'content-type', etc...
        info = response.info().dict
        page = response.read()
Run Code Online (Sandbox Code Playgroud)