我是 Python 新手,正在使用 BeautifulSoup 练习网页抓取。
我检查了一些类似的问题,例如这个、这个和这个。但是,我仍然陷入我的问题。
这是我的代码:
import urllib.request
from bs4 import BeautifulSoup
html = urllib.request.urlopen("https://en.wikipedia.org/wiki/List_of_largest_recorded_music_markets").read()
soup = BeautifulSoup(html, 'html.parser')
tbody = soup.find_all('table',{"class":"wikitable plainrowheaders sortable jquery-tablesorter"})
首先,我不认为我正在寻找的网页包含类似问题中提到的 java 脚本。我打算提取这些表中的数据,但是当我执行 print(tbody) 时,我发现它是一个空列表。有人可以看看并给我一些提示吗?
谢谢你。
慕村9548890
相关分类