Pythonでは、urllibを使用してWebサイトが404か200かを確認するにはどうすればよいですか?


回答:


176

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

Python 3で使用するには、単にを使用しますfrom urllib.request import urlopen
Nathanael Farley

4
Python 3.4では、404がある場合、をurllib.request.urlopen返しますurllib.error.HTTPError
mcb 2017年

Python 2.7では機能しません。HTTPが400を返すと、例外がスローされます
Nadav B

86

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あることに注意してください。


2番目elseは間違いですか?
Samy Bencherif 2013

@NadavB例外オブジェクト「e」は応答オブジェクトのようになります。つまり、ファイルのようであり、ペイロードを「読み取る」ことができます。
Joe Holloway、

37

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')

URLError print(e.reason)使用することができます。
Gitnik 2017

どうhttp.client.HTTPExceptionですか?
CMCDragonkai 2018年

6
import urllib2

try:
    fileHandle = urllib2.urlopen('http://www.python.org/fish.html')
    data = fileHandle.read()
    fileHandle.close()
except urllib2.URLError, e:
    print 'you got an error with the code', e

5
TIMEXは、urllib2によってスローされる一般的なエラーではなく、http要求コード(200、404、500など)を取得することに関心があります。
ジョシュアバーンズ
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.