回答:
getcode()メソッド(python2.6で追加)は、応答とともに送信されたHTTPステータスコードを返します。URLがHTTP URLでない場合はNoneを返します。
>>> a=urllib.urlopen('http://www.google.com/asdfsf')
>>> a.getcode()
404
>>> a=urllib.urlopen('http://www.google.com/')
>>> a.getcode()
200
urllib.request.urlopen
返しますurllib.error.HTTPError
。
urllib2も使用できます。
import urllib2
req = urllib2.Request('http://www.python.org/fish.html')
try:
resp = urllib2.urlopen(req)
except urllib2.HTTPError as e:
if e.code == 404:
# do something...
else:
# ...
except urllib2.URLError as e:
# Not an HTTP-specific error (e.g. connection refused)
# ...
else:
# 200
body = resp.read()
はHTTPステータスコードを格納HTTPError
するのサブクラスでURLError
あることに注意してください。
else
は間違いですか?
Python 3の場合:
import urllib.request, urllib.error
url = 'http://www.google.com/asdfsf'
try:
conn = urllib.request.urlopen(url)
except urllib.error.HTTPError as e:
# Return code error (e.g. 404, 501, ...)
# ...
print('HTTPError: {}'.format(e.code))
except urllib.error.URLError as e:
# Not an HTTP-specific error (e.g. connection refused)
# ...
print('URLError: {}'.format(e.reason))
else:
# 200
# ...
print('good')
print(e.reason)
使用することができます。
http.client.HTTPException
ですか?
from urllib.request import urlopen
。