类选择器在beautifulSoup.select python

时间:2019-07-10 14:29:11

标签: python select beautifulsoup

当我写汤时。select('。r a')列表保持空白,不会选择任何标签

res = requests.get('http://google.com/search?q=cats')
res.raise_for_status()
page = bs4.BeautifulSoup(res.text, features="html.parser")
links = page.select('.r')
print(links)

假定该页面的所有链接都是ti填充链接,但是链接为空

0 个答案:

没有答案