bs4使用find_all后如何使用find?

时间:2017-04-09 09:05:29

标签: python-3.x beautifulsoup

我想搜索bbs并找到一个特定用户的内容。这是我的代码:

main_html = requests.get('http://bbs.tianya.cn/post-free-2328897-1.shtml')
main_soup = BeautifulSoup(main_html.text, 'lxml')
all_a = main_soup.find_all('div', _host='羡鱼则结网')

现在我拥有该用户的所有代码,我想再次搜索内容。但是,我不能使用find,因为find_all返回一个列表。 我应该怎么做才能通过BeautifulSoup搜索两次?

0 个答案:

没有答案