Python HTTP错误 - 403禁止

时间:2014-02-05 23:05:05

标签: python-3.x http-status-code-403

我正在尝试使用Python 3.3运行一些代码。 这是代码:

import urllib.request

html = urllib.request.urlopen("https://www.google.com/")

html_code = html.read()
html_code = str(html_code)
sind = html_code.index("<cite class=]\"vurls\">") + len("<cite class=\"vurls\">")
eind = html_code.index("</cite>")
ser1resurl = html_code[sind:eind]
print(ser1resurl)

由于urllib.request.open(google)

,它会出现403 Forbidden错误

0 个答案:

没有答案