📌  相关文章
📜  'Response' 类型的对象没有 len() - 任何代码示例

📅  最后修改于: 2022-03-11 14:59:30.846000             🧑  作者: Mango

代码示例1
import requests

url = 'http://vineoftheday.com/?order_by=rating'
response = requests.get(url)
html = response.content

soup = BeautifulSoup(html, "html.parser")