开发者

BeautifulSoup - extracting attribute values

If Beautiful Soup gives me an anchor tag like this:

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

How would I retrieve the value of the href开发者_运维问答 attribute?


If you already have the anchor, grab the href attribute like this:

href = anchor["href"]


link.get('href')

in which 'link' is the name of your 'a' tag

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜