Trying to get the contents of this type of html snippet using beautiful soup (it is a "tag" object).
<span class="font5"> arrives at this calculation from the Torah’s report that the deluge (rains) began on the 17<sup>th</sup> day of the second month </span>
I've tried:
soup.contents.find_all('span')
soup.find_all('span')
soup.find_all(re.compile("font[0-9]+"))
soup.string
soup.child
And none of these seem to be working. What can I do?