I use the code as option 2 below ... but for a comprehensive answer, see Michael Foord urllib2 page
If you use either option 1 or option 2 below, you can add as much mind and branching as you want in the except clauses by looking at e.codeore.reason
Option 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:
Option 2:
from urllib import urlencode
from urllib2 import Request
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'):
error = True
error_code = e.reason
elif hasattr(e, 'code'):
error = True
error_code = e.code
else:
info = response.info().dict
page = response.read()
source
share