我正在做一个需要网络抓取的项目。因此,我正在查看 Python 中的 Requests 库。在库的快速入门页面中,给出了以下代码示例:
>>> import requests
>>> r = requests.get('https://github.com/timeline.json')
>>> r.text
'[{"repository":{"open_issues":0,"url":"https://github.com/...
在尝试该代码时,我发现尝试打印 r.text 时返回以下错误:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'Response' object has no attribute 'text'
我究竟做错了什么?