这是示例HTML代码:
<div class="cb-col cb-col-25 cb-mtch-blk"><a class="cb-font-12" href="/live-cricket-scores/16947/ind-vs-ban-only-test-bangladesh-tour-of-india-2017" target="_self" title="India v Bangladesh - Only Test">
<div class="cb-hmscg-bat-txt cb-ovr-flo ">
<div class="cb-ovr-flo cb-hmscg-tm-nm">BAN</div>
<div class="cb-ovr-flo" style="display:inline-block; width:140px">322/6 (104.0 Ovs)</div>
</div>
我想从上面解析的html中提取 BAN 和 322/6(104.0 Ovs)等文字。我喜欢这样 -
soup = BeautifulSoup(html)
div_class = soup.findAll('div',class_='cb-col cb-col-25 cb-mtch-blk')
for each in div_class:
#I want to get those texts from variable 'each'
我该怎么办?
答案 0 :(得分:3)
您可以将some css selectors与BeautifulSoup4:
一起使用>>> from bs4 import BeautifulSoup
>>> html = ... # the html provided in the question
>>> soup = BeautifulSoup(html, 'lxml')
>>> name, size = soup.select('div.cb-hmscg-bat-txt.cb-ovr-flo div')
>>> name.text
u'BAN'
>>> size.text
u'322/6 (104.0 Ovs)'
答案 1 :(得分:1)
each
表示您提供的HTML代码,您应该转到下一个div
代码,并使用stripped_strings
获取所有文字。
div_class = soup.findAll('div',class_='cb-col cb-col-25 cb-mtch-blk')
for each in div_class:
name, size = each.div.stripped_strings
print(name, size)
出:
BAN 322/6 (104.0 Ovs)