gpt4 book ai didi

python 3 : using requests does not get the full content of a web page

转载 作者:行者123 更新时间:2023-12-04 14:39:16 26 4
gpt4 key购买 nike

我正在使用 requests 进行测试获取网页内容的模块。但是当我查看内容时,我发现它没有获得页面的全部内容。

这是我的代码:

import requests
from bs4 import BeautifulSoup

url = "https://shop.nordstrom.com/c/womens-dresses-shop?origin=topnav&cm_sp=Top%20Navigation-_-Women-_-Dresses&offset=11&page=3&top=72"
page = requests.get(url)

soup = BeautifulSoup(page.content, 'html.parser')
print(soup.prettify())

同样在 chrome 网络浏览器上,如果我查看页面源代码,我看不到完整内容。

有没有办法获取我提供的示例页面的全部内容?

最佳答案

该页面使用 JavaScript 呈现,发出更多请求以获取更多数据。您可以使用 selenium 获取完整的页面。

from bs4 import BeautifulSoup
from selenium import webdriver
driver = webdriver.Chrome()
url = "https://shop.nordstrom.com/c/womens-dresses-shop?origin=topnav&cm_sp=Top%20Navigation-_-Women-_-Dresses&offset=11&page=3&top=72"
driver.get(url)
soup = BeautifulSoup(driver.page_source, 'html.parser')
driver.quit()
print(soup.prettify())

有关其他解决方案,请参阅我对 Scraping Google Finance (BeautifulSoup) 的回答

关于 python 3 : using requests does not get the full content of a web page,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47730671/

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