使用美丽的汤从狐狸新闻获得前十个链接

时间:2015-04-21 02:37:36

标签: python html beautifulsoup python-requests

我无法使用Beautiful Soup从狐狸新闻中获取链接我不认为我有足够的html代码来获取如何提取数据。

r = requests.get("http://www.foxnews.com/trending/#world")
data = BeautifulSoup(r.content).find("div",{"class":"module articles"}).find("div",{"class":"list"}).find_all("div",{"id":"id_"})
links = [d.a["href"] for d in data[:10]]

数据显示为空列表,所以我不认为我正在查看html的正确部分。任何帮助都会很棒。 瑞士

0 个答案:

没有答案