I have an HTML document, and I want to parse out a table with a specific id, which is always within a div tag with a specific id. Here is what I've tried:
soup = BeautifulSoup(html)
target_div = soup('div', {'id' : 'left'})
target_table = target_div.findNextSibling('table')
Clearly that's not working. It seems that my second statement returns a ResultSet instead of moving me around the document (which I suppose makes sense, but I'm not sure how to get what I need otherwise!). What is the correct methodology for doing this kind of parsing?