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 modu开发者_StackOverflow中文版le?
It is Superseded by HTMLParser see Python library reorganization
I haven't used it, but it looks like what you want is the html.parser
library, and possibly also html.entity
.
I heard Beautiful soup is getting a port to 3.0.
I believe lxml has been ported to Python 3
精彩评论