Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
1  
If I may ask, why can't you use lxml, or BS? – Nick Presta Apr 4 '09 at 18:26
3  
-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

7 Answers

up vote 9 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?)

share|improve this answer

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.

share|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
1  
also it doesnt stomach malformed html very well – Surya Apr 4 '09 at 20:47
14  
I thought dealing with malformed HTML was largely the point of BeautifulSoup? – andybak Apr 5 '09 at 9:28

Perhaps µTidylib will meet your needs?

share|improve this answer

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").

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

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

share|improve this answer
While this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Link-only answers can become invalid if the linked page changes. – dgw Aug 22 '12 at 13:30
This isn't quite a link-only answer, @Dgw. It contains a complete sentence mentioning the name of the linked-to library, and in the case of this question, the name of a library is the essential part of the answer. Anyone can search for it in case the link is dead. – Rob Kennedy Oct 10 '12 at 15:08

htql is good at handling malformed html:

http://htql.net/

share|improve this answer

You can install lxml and many other python modules easily and seamlessly on the Mac (OS X) using Pallet, which is the MacPorts official GUI

The module name is py27-lxml. Easy as 1,2,3.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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