Arpi Shah
Arpi Shah

Reputation: 109

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?

Upvotes: 9

Views: 8649

Answers (1)

Sara Santana
Sara Santana

Reputation: 1019

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

import html.parser

Upvotes: 14

Related Questions