gpt4 book ai didi

python - 使用请求获取内容网页

转载 作者:太空宇宙 更新时间:2023-11-04 09:01:38 25 4
gpt4 key购买 nike

我正在尝试通过使用获取 html 网页的内容

r = requests.get(url-page)

r.text()

我想取回整个 html 页面,但不幸的是我得到了以下错误

TypeError: 'unicode' object is not callable

最佳答案

.text 只是 Response 对象的一个​​属性。

示例:

>>> from requests import get
>>> response = get("http://www.google.com")
>>> response.text[:9]
u'<!doctype'
>>>

如果它是一个属性,就像任何普通的对象属性访问一样,您不必“调用”该属性。

参见:关于 Response Content 的请求文档

关于python - 使用请求获取内容网页,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24769877/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com