<a class="button button-mini" href="www.example-link.com.c"><b>TEXT</b></a>
I'm creating Python parser, and i need to get link from this tag. I tried this, but result was "None":
link = table.find_all('td')[1].a.href
link = table.find_all('td')[1].a.link
Using Beautiful Soup 4 & Python 3.5
a.get('href')