BeautifulSoup类发现返回无

时间:2019-04-22 11:15:04

标签: python web-scraping beautifulsoup

我正在使用BeautifulSoup编写一个python程序,它将检索网站上的下载链接。我正在使用find方法来检索链接所在的html类,但是它返回None。

我尝试使用父类访问此类,但未成功。

这是我的代码

link = 'https://data.worldbank.org/topic/agriculture-and-rural-development?view=chart'

for link in indicator_links:
    indicator_page = requests.get(link)
    indicator_soup = BeautifulSoup(page.text, 'html.parser')
    download = indicator_soup.find(class_="btn-item download")

同样,我希望下载链接位于btn-item download html类中。