标签: python-2.7 beautifulsoup
我试图使用BeautifulSoup在网站上搜索特定文章。理想情况下,我的脚本应该允许我在文章标题中找到基于随机关键字的文章,如果找到,则返回相应的文章链接。 example site包含this link中包含关键字security council的文章,但到目前为止,我无法通过soup.find_all(text="security council")找到该文章。
security council
soup.find_all(text="security council")
有什么建议吗?
谢谢!