What's my best bet for parsing HTML if I can't use BeautifulSoup or lxml? I've got some code that uses SGMLlib but it's a bit low-level and it's now deprecated.

I would prefer if it could stomache a bit of malformed HTML although I'm pretty sure most of the input will be pretty clean.

link|improve this question

78% accept rate
1  
If I may ask, why can't you use lxml, or BS? – Nick Presta Apr 4 '09 at 18:26
2  
-1: No good reason for avoiding Beautiful Soup. – S.Lott Apr 4 '09 at 20:29
I was trying to avoid answers getting completely sidetracked. My reasons for avoiding BeautifulSoup are hugely debatable but I was saving that for another day! (My reasons for avoiding lxml are simple - a complete failure to install it on either Mac OSX or Linux :( – andybak Apr 5 '09 at 9:27
1  
Here is how to install lxml on Linux: sudo apt-get install libxml2-dev libxslt-dev python2.7-dev (python2.6-dev if you use Python 2.6). Then sudo pip install lxml. – Jabba Aug 12 '11 at 20:32
feedback

6 Answers

up vote 4 down vote accepted

Python has a native HTML parser, however the Tidy wrapper Nick suggested would probably be a solid choice as well. Tidy is a very common library, (written in C is it?)

link|improve this answer
feedback

Why can't you use BeautifulSoup? It's a simple one-file python-module, so if you don't get it "installed", just copy-and-paste it's contents into your actual script.

link|improve this answer
1  
Beautiful Soup has a lot of problems that haven't been fixed yet for Python 3. – Robert Elwell Apr 4 '09 at 19:33
also it doesnt stomach malformed html very well – Surya Apr 4 '09 at 20:47
6  
I thought dealing with malformed HTML was largely the point of BeautifulSoup? – andybak Apr 5 '09 at 9:28
feedback

Perhaps µTidylib will meet your needs?

link|improve this answer
feedback

http://www.xmlhack.com/read.php?item=1392 http://sourceforge.net/projects/pirxx/

http://pyxml.sourceforge.net/topics/

I don't have much experience with python, but I have used Xerces (from the Apache foundation) in the past and found it to be very useful. The learning curve isn't bad either, though I'm not coming from a python perspective. I suggest you consider it though. (The first two links I've included discuss python interfaces to Xerces and the last one is the first google hit on "python xml").

link|improve this answer
I know you want an HTML parser, but these will be good starting places. – Joe Apr 4 '09 at 18:31
feedback

html5lib is good:
http://code.google.com/p/html5lib/

link|improve this answer
feedback

htql is good at handling malformed html:

http://htql.net/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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