If Beautiful Soup gives me an anchor tag like this:
How would I
link.get('href')
in which 'link' is the name of your 'a' tag
If you already have the anchor, grab the href attribute like this:
href
href = anchor["href"]