Reputation: 14404
I am trying to parse some html. I would like something like sgmllib
but it is deprecated in python 3.2.
Is there an alternate module that I can use?
Thanks.
Upvotes: 2
Views: 4275
Reputation: 27216
Built-in HTMLParser module: http://docs.python.org/py3k/library/html.parser.html
Not native but worth to mention; BeautifulSoup: http://www.crummy.com/software/BeautifulSoup/
Upvotes: 8