Python beautifulsoup如何获得' href'

时间:2014-05-14 21:32:38

标签: python beautifulsoup

我有这段HT​​ML:

<a href="http://francetv.fr/videos/alcaline_l_instant_,12163184.html"  class="ss-titre">
                                "Paris Combo"                   </a>    
<a href="http://francetv.fr/videos/jt20h_,12185324.html" class="ss-titre"> 
                            Journal         </a>

我可以http://francetv.fr/videos/jt20h_,12185324.html(例如,不是真正的地址)但现在, 我想用beautifulsoup来获得“Paris Combo”和“Journal”。 我试过这个:

for line in soup.findAll('/a'):
              title = line.get('</a>')

我该怎么办? 感谢

1 个答案:

答案 0 :(得分:1)

您需要拨打find_all("a")

>>> for line in soup.find_all("a"):
...     print(line.text.strip())
"Paris Combo"
Journal