Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

using beautifulsoup with html5lib, it puts the html, head and body tags automatically:

BeautifulSoup('<h1>FOO</h1>', 'html5lib') # => <html><head></head><body><h1>FOO</h1></body></html>

is there any option that I can set, turn off this behavior ?

share|improve this question
What are you actually trying to do? If you're trying to parse it as a fragment of a document (like innerHTML does), then you want a different API. – gsnedders Apr 15 at 23:55

2 Answers

up vote 2 down vote accepted
In [35]: import bs4 as bs

In [36]: bs.BeautifulSoup('<h1>FOO</h1>', "html.parser")
Out[36]: <h1>FOO</h1>

This parses the HTML with Python's builtin HTML parser. Quoting the docs:

Unlike html5lib, this parser makes no attempt to create a well-formed HTML document by adding a <body> tag. Unlike lxml, it doesn’t even bother to add an <html> tag.


Alternatively, you could use the html5lib parser and just select the element after <body>:

In [61]: soup = bs.BeautifulSoup('<h1>FOO</h1>', 'html5lib')

In [62]: soup.body.next
Out[62]: <h1>FOO</h1>
share|improve this answer
Note that html.parser is the default. – Martijn Pieters Feb 11 at 22:55
@MartijnPieters: That does not appear to be true, at least as of version 4.1.3. If you leave the features unspecified, the default is ['html', 'fast']. Skimming the code, it appears bs uses the first builder listed in bs.builder.builder_registry.builders_for_feature['html'], in my case it is bs4.builder._lxml.LXMLTreeBuilder. So it seems to depend on what you have installed. Or more precisely, the default builder is whatever is returned by bs.builder.builder_registry.lookup('html', 'fast'). – unutbu Feb 11 at 23:06
unfortunately I need it to be html5lib... – BernardoFire Feb 11 at 23:34
@unutbu: Yes, if lxml is installed that'll be used instead (in HTML mode); the documentation isn't entirely forthright about that. – Martijn Pieters Feb 11 at 23:37
It's actually now documented that it uses lxml first. Under Specifying the parser to use: "If you don’t specify anything, you’ll get the best HTML parser that’s installed. Beautiful Soup ranks lxml’s parser as being the best, then html5lib’s, then Python’s built-in parser." – abarnert Apr 12 at 21:48

Your only option is to not use html5lib to parse the data.

That's a feature of the html5lib library, it fixes HTML that is lacking, such as adding back in missing required elements.

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.