我无法使用bs4 Python 3在网站上找到表

时间:2019-11-02 18:10:55

标签: python parsing beautifulsoup

我正在解析网站https://rutracker.org/forum/viewtopic.php?t=4804331(网站为俄语,但这没有关系)。我想将“ href”作为对象“Скачать.torrent”(在图中圈出)以下载文件。这是表的行。我试图通过bs4找到表。首先,我尝试找到所有表,然后取必要的表。但是我找不到这张桌子。怎么了?也许是因为脚本?

import requests, bs4
link='https://rutracker.org/forum/viewtopic.php?t=4804331'
res=requests.get(link)
res.raise_for_status()
soup=bs4.BeautifulSoup(res.text,'html.parser')
table=soup.find_all('table')
for t in table:
    print(t)

image

0 个答案:

没有答案