Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

HTMLParser for Python 3.4

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

I can not find the HTMLParser download module.

If it exists, can anyone share the link? If not, what should I do?

like image 884
Arpi Shah Avatar asked Dec 06 '14 19:12

Arpi Shah


1 Answers

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

import html.parser
like image 158
Sara Santana Avatar answered Oct 16 '22 17:10

Sara Santana