I have the following html:
<h2>blah</h2>
html content to extract
(here can come tags, nested structures too, but no top-level h2)
<h2>other blah</h2>
Can I extract the content without using string.split("<h2>") in python?
(Say, with BeautifulSoup or with some other library?)