使用BeautifulSoup无法解析网页

时间:2019-05-12 23:09:38

标签: python web-scraping beautifulsoup

我想使用Python和BeautifulSoup从Amazon解析并返回视频卡的价格,但是每当我运行代码时,脚本都会返回“无”,而不是html数据。我知道页面上有数据,但是我不知道哪里出错了。请参考下面的代码。

任何帮助解决问题的人将不胜感激。预先感谢

import requests
from bs4 import BeautifulSoup

URL = 'https://www.amazon.com/dp/B07P76G428/?coliid=I1TWRZRQWM7S77&colid=1T8S2DD94FS3Q&psc=0&ref_=lv_ov_lig_dp_it'
page = requests.get(URL)
soup = BeautifulSoup(page.content,'lxml')
price_container = soup.find('div', attrs={'id':'price'})
print(price_container)

0 个答案:

没有答案