I have the following bs4 object listing:
>>> listing
<div class="listingHeader">
<h2>
....
>>> type(listing)
<class 'bs4.element.Tag'>
I want to extract the raw html as a string. I've tried:
>>> a = listing.contents
>>> type(a)
<type 'list'>
So this does not work. How can I do this?