我正在使用 Python3 和包请求来获取 HTML 数据。
我试过运行这条线
r = requests.get('https://github.com/timeline.json')
,这是他们教程中的示例,但无济于事。但是,当我跑步时
request = requests.get('http://www.math.ksu.edu/events/grad_conf_2013/')
它工作正常。我收到错误,例如
AttributeError: 'MockRequest' object has no attribute 'unverifiable'
Error in sys.excepthook:
我认为这些错误与我尝试获取的网页类型有关,因为正在运行的 html 页面只是我编写的基本 html。
一般来说,我对请求和 Python 很陌生。我也是stackoverflow的新手。