A portion of the html code I want to scrap looks like this:
<button aria-label="Play" class="history" data-src="webpage.com" data-type="audio/mp3" title="Play" type="button"></button>
I'm trying to scrap the "data-src" section of the button. Ultimately I want to run through the entire webpage and collect all the "webpage.com." I've narrowed it down to scraping the above piece of code using beautiful soup, but I can't quite figure out how to just get the "webpage.com" part.