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

I am working on a project that will involve parsing HTML.

After searching around, I found two probable options: BeautifulSoup and lxml.html

Is there any reason to prefer one over the other? I have used lxml for XML some time back and I feel I will be more comfortable with it, however BeautifulSoup seems to be much common.

I know I should use the one that works for me, but I was looking for personal experiences with both.

share|improve this question

4 Answers

up vote 5 down vote accepted

The simple answer, imo, is that if you trust your source to be well-formed, go with the lxml solution. Otherwise, BeautifulSoup all the way.

share|improve this answer
I see. I will go with lxml only, my HTML comes from a robust website so I can (hopefully) depend on it to be well formed. – user225312 Feb 11 '11 at 9:28
2  
In my experience, lxml.html handles ill-formed html just fine. – Steven Feb 11 '11 at 9:52
@Steven: So you also recommend lxml.html over BeautifulSoup? – user225312 Feb 11 '11 at 9:56
3  
Yes, I would, certainly if you are already familiar with lxml, and you have no "pure python" requirements (as on Google Appengine). Personally, I haven't had any problems with processing pages with lxml.html (on the contrary, I have been able to process pages that gave problems with Beautifulsoup), except once where I had to explicitly provide the correct character encoding (because lxml "trusted" the incorrect http headers/html meta tags). Also note that the ElementSoup enables lxml.html to use the BeautifulSoup parser should it be necessary) – Steven Feb 11 '11 at 10:35
@Steven: my own experience was not so good, but I'll credit yours next time I'm faced with a choice. +1 for mentioning ElementSoup, too. Finally, @Patrick: another argument in favour of lxml is better speed in almost every case. – simon Feb 11 '11 at 12:07

Use both? lxml for DOM manipulation, BeautifulSoup for parsing:

http://codespeak.net/lxml/elementsoup.html

share|improve this answer

lxml's great. But parsing your input as html is useful only if the dom structure actually helps you find what you're looking for.

Can you use ordinary string functions or regexes? For a lot of html parsing tasks, treating your input as a string rather than an html document is, counterintuitively, way easier.

share|improve this answer
1  
"easier", perhaps -- but not robust by any means. It's extremely easy for a formatting change in the input HTML (line wrapping, whitespace, element encoding, etc) to break a manually-developed "parser". If you want to build something to parse input you don't control, or which otherwise might change in the future, using a real HTML parser is the Right Thing. – Charles Duffy Aug 30 '11 at 17:22
1  
@dfichter You've done it again. You spake the unspeakable; you've uttered the unholy incantation by crossing html and regexes in the same breath. You've surely wandered into the mouth of madness as so many poor souls before you. – aculich Jan 16 '12 at 21:26

I use both. lxml is good when your xml is well formed whereas, beautifulsoup is used when it is ill formed.

In my experience, lxml is the best choice for well-formed XML. You can also use feedparser http://www.feedparser.org/. I use beautifulsoup only for parsing html files.

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.