gpt4 book ai didi

python - 有没有办法在 python 中抓取没有 Selenium 的 JavaScript 页面

转载 作者:行者123 更新时间:2023-12-05 08:05:35 24 4
gpt4 key购买 nike

有没有办法用 python beautifulsoup 或 lxml 不使用 selenium 来抓取 JS 渲染的网页?

谢谢

最佳答案

你可以使用 requests_html 模块作为替代,它非常简单

from bs4 import BeautifulSoup
import requests

resp = requests.get("https://stackexchange.com/sites")

html = resp.content
soup = BeautifulSoup(html)

option_tags = soup.find_all("option")

如果您想更深入地了解它,只需谷歌该模块

关于python - 有没有办法在 python 中抓取没有 Selenium 的 JavaScript 页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64119236/

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