HTMLParser for Python 3.4

I have some code written in Python (2.7) that uses HTMLParser. I am using Pyhton 3.4 currently.

I cannot find the HTMLParse loading module. I've searched a lot. I can not find him.

I am concerned that he exists. If it exists, please submit a link. If not, what should I do?

+3


source to share


1 answer


You don't need to install the html parser for Python 3. It's pre-installed. Just use:



import html.parser

      

+6


source







All Articles