Hi all, I'm trying to extract some information from an html file using beautiful soup. The strings I want get are after br tags, eg:
<font size='6'>
<br>this info
<br>more info
<br>and more info
</font>
I can navigate to the first br tag using find_next_sibling, but how do
I get the string after the br's?
br.contents is empty.
thanks for any ideas.
--
http://mail.python.org/mailman/listinfo/python-list
