web-dev-qa-db-ja.com

Python 3.4 url​​lib.requestエラー(http 403)

HTMLページを開いて解析しようとしています。 python 2.7.8では問題ありません。

import urllib
url = "https://ipdb.at/ip/66.196.116.112"
html = urllib.urlopen(url).read()

そして、すべてが大丈夫です。しかし、私はpython 3.4に移動したいのですが、そこでHTTPエラー403(禁止)が表示されます)私のコード:

import urllib.request
html = urllib.request.urlopen(url) # same URL as before

File "C:\Python34\lib\urllib\request.py", line 153, in urlopen
return opener.open(url, data, timeout)
File "C:\Python34\lib\urllib\request.py", line 461, in open
response = meth(req, response)
File "C:\Python34\lib\urllib\request.py", line 574, in http_response
'http', request, response, code, msg, hdrs)
File "C:\Python34\lib\urllib\request.py", line 499, in error
return self._call_chain(*args)
File "C:\Python34\lib\urllib\request.py", line 433, in _call_chain
result = func(*args)
File "C:\Python34\lib\urllib\request.py", line 582, in http_error_default
raise HTTPError(req.full_url, code, msg, hdrs, fp)
urllib.error.HTTPError: HTTP Error 403: Forbidden

Httpsを使用しない他のURLでも機能します。

url = 'http://www.stopforumspam.com/ipcheck/212.91.188.166'

大丈夫です。

20
Belial

サイトはPython 3.x.のユーザーエージェントを好きではないようです。

User-Agentを指定すると、問題が解決します。

import urllib.request
req = urllib.request.Request(url, headers={'User-Agent': 'Mozilla/5.0'})
html = urllib.request.urlopen(req).read()

[〜#〜]ノート[〜#〜] Python 2.x urllibバージョンも403ステータスを受け取りますが、Pythonとは異なります2.x urllib2およびPython 3.x urllibの場合、例外は発生しません。

次のコードで確認できます。

print(urllib.urlopen(url).getcode())  # => 403
29
falsetru

Python-3を勉強していたときにurllibに集めたメモをいくつか示します。
私は、彼らが重宝したり、誰かを助けたりする可能性がある場合に備えて、それらを保管しました。

インポート方法urllib.requestおよびurllib.parse

import urllib.request as urlRequest
import urllib.parse as urlParse

GETリクエストを行う方法:

url = "http://www.example.net"
# open the url
x = urlRequest.urlopen(url)
# get the source code
sourceCode = x.read()

POSTリクエストを行う方法:

url = "https://www.example.com"
values = {"q": "python if"}
# encode values for the url
values = urlParse.urlencode(values)
# encode the values in UTF-8 format
values = values.encode("UTF-8")
# create the url
targetUrl = urlRequest.Request(url, values)
# open the url
x  = urlRequest.urlopen(targetUrl)
# get the source code
sourceCode = x.read()

POSTリクエスト(403 forbidden 反応):

url = "https://www.example.com"
values = {"q": "python urllib"}
# pretend to be a chrome 47 browser on a windows 10 machine
headers = {"User-Agent": "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36"}
# encode values for the url
values = urlParse.urlencode(values)
# encode the values in UTF-8 format
values = values.encode("UTF-8")
# create the url
targetUrl = urlRequest.Request(url = url, data = values, headers = headers)
# open the url
x  = urlRequest.urlopen(targetUrl)
# get the source code
sourceCode = x.read()

GETリクエストを行う方法(403 forbidden 反応):

url = "https://www.example.com"
# pretend to be a chrome 47 browser on a windows 10 machine
headers = {"User-Agent": "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36"}
req = urlRequest.Request(url, headers = headers)
# open the url
x = urlRequest.urlopen(req)
# get the source code
sourceCode = x.read()
2
user5870134