Python'da, bir web sitesinin 404 veya 200 olup olmadığını görmek için urllib'i nasıl kullanırım?


Yanıtlar:


176

Getcode () yöntemi (python2.6'da eklendi) yanıtla birlikte gönderilen HTTP durum kodunu döndürür veya URL HTTP URL'si değilse Yoktur.

>>> a=urllib.urlopen('http://www.google.com/asdfsf')
>>> a.getcode()
404
>>> a=urllib.urlopen('http://www.google.com/')
>>> a.getcode()
200

Python 3'te kullanmak için sadece from urllib.request import urlopen.
Nathanael Farley

4
Python 3.4'te, bir 404 varsa, urllib.request.urlopena urllib.error.HTTPError.
mcb

Python 2.7'de çalışmaz. HTTP 400 döndürürse bir istisna atılır
Nadav B

86

Urllib2'yi de kullanabilirsiniz :

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

Bunun HTTPError, URLErrorHTTP durum kodunu saklayan bir alt sınıf olduğunu unutmayın .


İkincisi elsebir hata mı?
Samy Bencherif

@NadavB İstisna nesnesi 'e' bir yanıt nesnesi gibi görünecektir. Yani, dosya gibidir ve yükü ondan 'okuyabilirsiniz'.
Joe Holloway

37

Python 3 için:

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

İçin UrlError print(e.reason) kullanılabilir.
Gitnik

Peki ya http.client.HTTPException?
CMCDragonkai

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 tarafından atılan genel bir hata değil http istek kodunu (200, 404, 500, vb.) Almakla ilgileniyor.
Joshua Burns
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.