I have HTML data and I want to get all the text between the
tags and put it into dataframes for further processing.
But I only want the text in the
tags that are between these tags:
<div class="someclass" itemprop="text">
<p>some text</p>
</div>
Using BeautifulSoup I can get text between all the
tags easy enough. But as I said, I don't want it unless it is between those tags.
"someclass"?