I'm trying to parse a malformed XHTML page in Python. I just want to get a few tags of the same type from it, but it seems impossible. Normal XHTML parsers doesn't like the malformedness, and BeautifulSoup won't work because of syntax errors in its code. What would be the best way to parse malformed XHTML and get the content of a couple of tags of the same type?
3 Answers
"Normal" parsers? lxml usually deals fine with malformed html, although it's quite "normal". :-)
Comments
Thanks for the help! "Unfortunately" I solved it myself by using this parser and setting html.parser.HTMLParser(strict=False). That made it read malformed XHTML quite well.
1 Comment
Francesco Frassinelli
Keep in mind that strict=False is the default value, it's deprecated since Python 3.3 and it will be removed in Python 3.5.