Reputation: 115
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?
Upvotes: 9
Views: 7300
Reputation: 351758
If you already have the anchor, grab the href
attribute like this:
href = anchor["href"]
Upvotes: 10