Skip to main content

HTML parser based on the WHATWG HTML specification

Project description

html5rdf

https://github.com/html5lib/html5lib-python/actions/workflows/python-tox.yml/badge.svg

html5rdf is a pure-python library for parsing HTML to DOMFragment objects for the use in RDFLib. html5rdf is a fork of html5lib-python. See below for the html5lib README.


It is designed to conform to the WHATWG HTML specification, as is implemented by all major web browsers.

htm5lib-modern is designed as a drop-in replacement for html5lib that exposes a new html5lib module without Python 2 support and without the legacy dependencies on six, and webencodings. Note, you should not have the old deprecated html5lib and html5lib-modern in your dependency tree at the same time, because they alias.

Usage

Simple usage follows this pattern:

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

or:

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

By default, the document will be an xml.etree element instance. Whenever possible, html5lib chooses the accelerated ElementTree implementation.

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

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

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

from urllib.request import urlopen
import html5rdf

with urlopen("http://example.com/") as f:
    document = html5rdf.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 html5rdf
with open("mydocument.html", "rb") as f:
    parser = html5rdf.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 html5rdf
parser = html5rdf.HTMLParser(tree=html5rdf.getTreeBuilder("dom"))
minidom_document = parser.parse("<p>Hello World!")

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

Installation

html5rdf works on CPython 3.8+ and PyPy. To install:

$ pip install html5rdf

The goal is to support a (non-strict) superset of the versions that pip supports.

Optional Dependencies

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

  • 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 pytest 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.

Credits

html5lib is written and maintained by:

  • James Graham

  • Sam Sneddon

  • Łukasz Langa

  • Will Kahn-Greene

Patches and suggestions

(In chronological order, by first commit:)

  • Anne van Kesteren

  • Lachlan Hunt

  • lantis63

  • Sam Ruby

  • Thomas Broyer

  • Tim Fletcher

  • Mark Pilgrim

  • Ryan King

  • Philip Taylor

  • Edward Z. Yang

  • fantasai

  • Philip Jägenstedt

  • Ms2ger

  • Mohammad Taha Jahangir

  • Andy Wingo

  • Andreas Madsack

  • Karim Valiev

  • Juan Carlos Garcia Segovia

  • Mike West

  • Marc DM

  • Simon Sapin

  • Michael[tm] Smith

  • Ritwik Gupta

  • Marc Abramowitz

  • Tony Lopes

  • lilbludevil

  • Kevin

  • Drew Hubl

  • Austin Kumbera

  • Jim Baker

  • Jon Dufresne

  • Donald Stufft

  • Alex Gaynor

  • Nik Nyby

  • Jakub Wilk

  • Sigmund Cherem

  • Gabi Davar

  • Florian Mounier

  • neumond

  • Vitalik Verhovodov

  • Kovid Goyal

  • Adam Chainz

  • John Vandenberg

  • Eric Amorde

  • Benedikt Morbach

  • Jonathan Vanasco

  • Tom Most

  • Ville Skyttä

  • Hugo van Kemenade

  • Mark Vasilkov

HTML5Lib-modern

  • Ashley Sommer

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

html5rdf-1.2.1.tar.gz (287.9 kB view details)

Uploaded Source

Built Distribution

html5rdf-1.2.1-py2.py3-none-any.whl (109.8 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file html5rdf-1.2.1.tar.gz.

File metadata

  • Download URL: html5rdf-1.2.1.tar.gz
  • Upload date:
  • Size: 287.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.10

File hashes

Hashes for html5rdf-1.2.1.tar.gz
Algorithm Hash digest
SHA256 ace9b420ce52995bb4f05e7425eedf19e433c981dfe7a831ab391e2fa2e1a195
MD5 a901f501e54302ed1ee9869c7c17d975
BLAKE2b-256 4c551b839c43f5ed8207e17a9a02d8b395179520b8b4f00c00a41e113bc205ca

See more details on using hashes here.

File details

Details for the file html5rdf-1.2.1-py2.py3-none-any.whl.

File metadata

  • Download URL: html5rdf-1.2.1-py2.py3-none-any.whl
  • Upload date:
  • Size: 109.8 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.10

File hashes

Hashes for html5rdf-1.2.1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 1f519121bc366af3e485310dc8041d2e86e5173c1a320fac3dc9d2604069b83e
MD5 d9ac297fc6c85c7158e8c9ec83c554c7
BLAKE2b-256 7dc9f6e1e8567660bc5b0aba281f2b0017b2a7665fcad6bf3ed67286a0c72cd4

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page