Skip to content
Standards-compliant library for parsing and serializing HTML documents and fragments in Python
Python Other
  1. Python 99.9%
  2. Other 0.1%
Branch: master
Clone or download

Latest commit

Latest commit 05b73ef Feb 27, 2020

Files

Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
doc Update flake8 to the latest version and fix all errors Feb 26, 2020
html5lib Fix typos (#424) Feb 26, 2020
utils Update flake8 to the latest version and fix all errors Feb 26, 2020
.appveyor.yml Add testing and document support for Python 3.7, 3.8 & PyPy3 Feb 26, 2020
.coveragerc Add codecov. Apr 25, 2016
.gitignore Ignore PyCharm IDE metadata Nov 30, 2017
.gitmodules
.prospector.yaml Add prospector/pylint config for the sake of Landscape. May 20, 2016
.pylintrc
.pytest.expect Update tests to tip of html5lib-tests Jul 6, 2016
.travis.yml
AUTHORS.rst Via: git log --format="%aN" --reverse | perl -e 'my %dedupe; while (<… Dec 3, 2017
CHANGES.rst Fix CHANGES.rst to have 1.0.1 instead of unrelased Dec 7, 2017
CONTRIBUTING.rst separate AUTHORS.rst May 9, 2013
LICENSE Readd LICENSE Apr 10, 2013
MANIFEST.in Add AUTHORS.rst and test files to manifest. Dec 3, 2015
README.rst Document Python support Feb 26, 2020
debug-info.py drop usage of charade now chardet is maintained again May 22, 2016
flake8-run.sh
parse.py Replace deprecated optparse with argparse Feb 26, 2020
pytest.ini Change py.test config. May 10, 2016
requirements-install.sh Fix Travis CI builds on Python 3.4 Oct 28, 2017
requirements-optional.txt Travis CI: Add Python 3.7 and pypy3 (#417) Apr 18, 2019
requirements-test.txt Update pytest to 3.10.1 (the last < 4 release) Feb 27, 2020
requirements.txt Drop support for Python 2.6 (#356) Nov 7, 2017
setup.cfg Remove deprecated license_file from setup.cfg Feb 26, 2020
setup.py Add testing and document support for Python 3.7, 3.8 & PyPy3 Feb 26, 2020
tox.ini Add testing and document support for Python 3.7, 3.8 & PyPy3 Feb 26, 2020

README.rst

html5lib

https://travis-ci.org/html5lib/html5lib-python.svg?branch=master

html5lib is a pure-python library for parsing HTML. It is designed to conform to the WHATWG HTML specification, as is implemented by all major web browsers.

Usage

Simple usage follows this pattern:

import html5lib
with open("mydocument.html", "rb") as f:
    document = html5lib.parse(f)

or:

import html5lib
document = html5lib.parse("<p>Hello World!")

By default, the document will be an xml.etree element instance. Whenever possible, html5lib chooses the accelerated ElementTree implementation (i.e. xml.etree.cElementTree on Python 2.x).

Two other tree types are supported: xml.dom.minidom and lxml.etree. To use an alternative format, specify the name of a treebuilder:

import html5lib
with open("mydocument.html", "rb") as f:
    lxml_etree_document = html5lib.parse(f, treebuilder="lxml")

When using with urllib2 (Python 2), the charset from HTTP should be pass into html5lib as follows:

from contextlib import closing
from urllib2 import urlopen
import html5lib

with closing(urlopen("http://example.com/")) as f:
    document = html5lib.parse(f, transport_encoding=f.info().getparam("charset"))

When using with urllib.request (Python 3), the charset from HTTP should be pass into html5lib as follows:

from urllib.request import urlopen
import html5lib

with urlopen("http://example.com/") as f:
    document = html5lib.parse(f, transport_encoding=f.info().get_content_charset())

To have more control over the parser, create a parser object explicitly. For instance, to make the parser raise exceptions on parse errors, use:

import html5lib
with open("mydocument.html", "rb") as f:
    parser = html5lib.HTMLParser(strict=True)
    document = parser.parse(f)

When you're instantiating parser objects explicitly, pass a treebuilder class as the tree keyword argument to use an alternative document format:

import html5lib
parser = html5lib.HTMLParser(tree=html5lib.getTreeBuilder("dom"))
minidom_document = parser.parse("<p>Hello World!")

More documentation is available at https://html5lib.readthedocs.io/.

Installation

html5lib works on CPython 2.7+, CPython 3.5+ and PyPy. To install:

$ pip install html5lib

The goal is to support a (non-strict) superset of the versions that [pip supports](https://pip.pypa.io/en/stable/installing/#python-and-os-compatibility).

Optional Dependencies

The following third-party libraries may be used for additional functionality:

  • datrie can be used under CPython to improve parsing performance (though in almost all cases the improvement is marginal);
  • lxml is supported as a tree format (for both building and walking) under CPython (but not PyPy where it is known to cause segfaults);
  • genshi has a treewalker (but not builder); and
  • chardet can be used as a fallback when character encoding cannot be determined.

Bugs

Please report any bugs on the issue tracker.

Tests

Unit tests require the pytest and mock libraries and can be run using the py.test command in the root directory.

Test data are contained in a separate html5lib-tests repository and included as a submodule, thus for git checkouts they must be initialized:

$ git submodule init
$ git submodule update

If you have all compatible Python implementations available on your system, you can run tests on all of them using the tox utility, which can be found on PyPI.

Questions?

There's a mailing list available for support on Google Groups, html5lib-discuss, though you may get a quicker response asking on IRC in #whatwg on irc.freenode.net.

You can’t perform that action at this time.