Python 3.4 urllib.request Fehler (http 403)

Ich versuche zu öffnen und zu Parsen einer html-Seite. In python 2.7.8 habe ich kein problem:

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

und alles ist fein. Allerdings möchte ich zu bewegen, um python 3.4 und dort bekomme ich den HTTP-Fehler 403 (Verboten). Mein code:

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

Es Arbeit für andere URLs, die nicht https verwenden.

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

ist ok.

Kommentar zu dem Problem - Öffnen

InformationsquelleAutor der Frage Belial | 2015-02-08

Schreibe einen Kommentar