gpt4 book ai didi

python-3.x - Python请求如何在不下载所有图像的情况下获取页面?

转载 作者:行者123 更新时间:2023-12-01 03:01:45 25 4
gpt4 key购买 nike

我需要解析一个网页,它有很多图像,因此每个请求都需要花费很多时间。

我可以使用 requests.get 只获取 html 内容而不等待图像吗?

最佳答案

当您获取页面时,无论如何您只能下载页面本身。

import requests

url = 'https://stackoverflow.com/questions/40394209/python-requests-how-to-get-a-page-without-downloading-all-images'

# This will yield only the HTML code
response = requests.get(url)

print(response.text)

页面 HTML 包含对图像的引用,但 GET 请求不跟随它们。

关于python-3.x - Python请求如何在不下载所有图像的情况下获取页面?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40394209/

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