Python에서는 웹 사이트가 404 또는 200인지 어떻게 urllib을 사용합니까?

StackOverflow https://stackoverflow.com/questions/1726402

문제

urllib를 통해 헤더 코드를 얻는 방법은 무엇입니까?

도움이 되었습니까?

해결책

getCode () 메소드 (Python2.6에 추가)는 응답으로 전송 된 HTTP 상태 코드를 반환하거나 URL이 HTTP URL이없는 경우 없음을 반환합니다.

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

다른 팁

당신이 사용할 수있는 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()

주목하십시오 HTTPError 서브 클래스입니다 URLError HTTP 상태 코드를 저장합니다.

파이썬 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')
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
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top