findAll为html返回空

时间:2017-05-12 14:59:13

标签: python html parsing beautifulsoup findall

我正在使用BeautifulSoup模块来解析我想从中提取某些信息的html文件。具体的游戏分数和团队名称。

然而,当我使用findAll函数时,它会不断返回空,以获取肯定在html中的字符串。如果有人能解释我做错了什么,我将不胜感激。请参阅下面的代码。

import urllib
import bs4
import re
from urllib.request import urlopen as uReq
from bs4 import BeautifulSoup as soup

my_url = 'http://www.foxsports.com/mlb/scores?season=2017&date=2017-05-09'
uClient = uReq(my_url)
page_html = uClient.read()
uClient.close()
# html parser
page_soup = soup(page_html, "html.parser")
container = page_soup.findAll("div",{"class":"wisbb_teams"})
print(len(container))

1 个答案:

答案 0 :(得分:2)

我认为您使用的语法是BeautifulSoup的旧版本,请尝试使用 find_all snake_case(请参阅docs

from bs4 import BeautifulSoup
# ...
page_html = uClient.read()
page_soup = BeautifulSoup(page_html, "html.parser")
list_of_divs = page_soup.find_all("div", class_="wisbb_name")
print(len(list_of_divs))

较旧的API使用CamelCase,但bs4使用snake_case

此外,find_all所采用的通知可以通过获取class_参数。

有关更多信息,请参阅此答案https://stackoverflow.com/a/38471317/4443226

另外,请确保您正在寻找正确的类名!我没有看到你正在寻找的课程,而是这些:

enter image description here