vote up 0 vote down star
1

Using the Python Documentation I found the HTML parser but I have no idea which library to import to use it, how do I find this out (bearing in mind it doesn't say on the page).

flag

I was simply being a numpty and not noticing the obvious, thanks for the quick answers! – Teifion Sep 16 '08 at 10:54

9 Answers

vote up 2 vote down check

Try:

import HTMLParser
link|flag
vote up 1 vote down

There's a link to an example on the bottom of the page.

link|flag
vote up 12 vote down

You probably really want BeautifulSoup, check the link for an example.

But in any case

>>> import HTMLParser
>>> h = HTMLParser.HTMLParser()
>>> h.feed('<html></html>')
>>> h.get_starttag_text()
'<html>'
>>> h.close()
link|flag
vote up 3 vote down

I would recommend using Beautiful Soup module instead and it has good documentation.

link|flag
I'm gonna give it a whirl, thanks for the suggestion – Teifion Sep 16 '08 at 10:56
vote up 2 vote down

For real world HTML processing I'd recommend BeautifulSoup. It is great and takes away much of the pain. Installation is easy.

link|flag
vote up 1 vote down

You should also look at html5lib for Python as it tries to parse HTML in a way that very much resembles what web browsers do, especially when dealing with invalid HTML (which is more than 90% of today's web).

link|flag
Please add a link to html5lib. Thank you. – Cristian Ciupitu Sep 17 '08 at 1:47
vote up 1 vote down

I don't recommend BeautifulSoup if you want speed. lxml is much, much faster, and you can fall back in lxml's BS soupparser if the default parser doesn't work.

link|flag
vote up 0 vote down

You may be interested in lxml. It is a separate package and has C components, but is the fastest. It has also very nice API, allowing you to easily list links in HTML documents, or list forms, sanitize HTML, and more. It also has capabilities to parse not well-formed HTML (it's configurable).

link|flag
vote up 0 vote down

strong text*emphasized text*

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.