BeautifulSoup - 提取属性值

时间:2009-11-05 22:32:53

标签: python beautifulsoup

如果Beautiful Soup给我这样的锚标记:

<a class="blah blah" id="blah blah" href="link.html"></a>

如何检索href属性的值?

2 个答案:

答案 0 :(得分:10)

如果您已有锚点,请抓住href属性,如下所示:

href = anchor["href"]

答案 1 :(得分:1)

link.get('href')

其中'link'是'a'标记的名称