Having got an element, how do you empty it with BeautifulSoup?
For example, I have a div (as shown below), what do I need to do to clear it's contents?
mydiv = soup.find("div", { "id" : "TopMostInfoBlockContent" })
mydiv.?? #Something here to clear the div contents?