views:

346

answers:

4

I want to use the htmllib module but it's been removed from Python 3.0. Does anyone know what's the replacement for this module?

+4  A: 

I haven't used it, but it looks like what you want is the html.parser library, and possibly also html.entity.

Adam Rosenfield
+2  A: 

It is Superseded by HTMLParser see Python library reorganization

Mark
A: 

I heard Beautiful soup is getting a port to 3.0.

Taos
A: 

I believe lxml has been ported to Python 3

Ian Bicking