I'm trying to scrape html but unfortunately there is very little in the way of classes and id's. The classes that are used are not consistent from page to page. There are several on the page.
I hav some specific that I need to grab.
<a href="http://ExampleText.com/xyz">
and
The contents of the email addresses and URLs will change, but what will always be there will be <a href "http://ExampleText.com
and <a href="mailto:
Right now I'm able to grab all the with this code, but I don't know how to get the links with that specific text.
label_links = label_soup.select("div.row a")
print(label_links)
I'm still really new to Beautifulsoup, but I'm not seeing this in the literature (yet). Any help appreciated!