BeautifulSoup困惑

时间:2016-08-15 16:07:42

标签: python html web-scraping beautifulsoup

我正在使用BeautifulSoup在python中编写脚本来从html中查找一些数据。我陷入困境,如此困惑,我的大脑停止工作,我不知道如何刮掉这些元素的完整地址:

<li class="spacer">
<span>Location:</span> 
<br>Some Sample Street<br>
Abbeville, AL 00000
</li>

我尝过类似location = info.find('li', 'spacer').text的内容 但我仍然只有字符串“位置:”。试过很多父母 - 孩子的关系,但仍然无法弄清楚如何刮掉这个......

有人能帮助我吗?

1 个答案:

答案 0 :(得分:0)

试试这个:

locations = info.find_all('span',Class_="spacer")
for location in locations:
    print (location.text)