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?

link|improve this question
feedback

2 Answers

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

href = anchor["href"]
link|improve this answer
feedback

See "The Attributes of Tags" in the documentation.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.