Socket
Socket
Sign inDemoInstall

htmlement

Package Overview
Dependencies
2
Maintainers
1
Alerts
File Explorer

Install Socket

Detect and block malicious and high-risk dependencies

Install

    htmlement

Pure-Python HTML parser with ElementTree support.


Maintainers
1

Readme

.. image:: https://badge.fury.io/py/htmlement.svg :target: https://pypi.python.org/pypi/htmlement

.. image:: https://readthedocs.org/projects/python-htmlement/badge/?version=stable :target: http://python-htmlement.readthedocs.io/en/stable/?badge=stable

.. image:: https://github.com/willforde/python-htmlement/actions/workflows/tests.yml/badge.svg?branch=master&event=push :target: https://github.com/willforde/python-htmlement/actions

.. image:: https://codecov.io/gh/willforde/python-htmlement/branch/master/graph/badge.svg?token=D5EKKLIVBP :target: https://codecov.io/gh/willforde/python-htmlement

.. image:: https://api.codeclimate.com/v1/badges/7d593426acc83cba5ef7/maintainability :target: https://codeclimate.com/github/willforde/python-htmlement/maintainability :alt: Maintainability

HTMLement

HTMLement is a pure Python HTML Parser.

The object of this project is to be a "pure-python HTML parser" which is also "faster" than "beautifulsoup". And like "beautifulsoup", will also parse invalid html.

The most simple way to do this is to use ElementTree XPath expressions__. Python does support a simple (read limited) XPath engine inside its "ElementTree" module. A benefit of using "ElementTree" is that it can use a "C implementation" whenever available.

This "HTML Parser" extends html.parser.HTMLParser_ to build a tree of ElementTree.Element_ instances.

Install

Run ::

pip install htmlement

-or- ::

pip install git+https://github.com/willforde/python-htmlement.git

Parsing HTML

Here I’ll be using a sample "HTML document" that will be "parsed" using "htmlement": ::

html = """
<html>
  <head>
    <title>GitHub</title>
  </head>
  <body>
    <a href="https://github.com/marmelo">GitHub</a>
    <a href="https://github.com/marmelo/python-htmlparser">GitHub Project</a>
  </body>
</html>
"""

# Parse the document
import htmlement
root = htmlement.fromstring(html)

Root is an ElementTree.Element_ and supports the ElementTree API with XPath expressions. With this I'm easily able to get both the title and all anchors in the document. ::

# Get title
title = root.find("head/title").text
print("Parsing: %s" % title)

# Get all anchors
for a in root.iterfind(".//a"):
    print(a.get("href"))

And the output is as follows: ::

Parsing: GitHub
https://github.com/willforde
https://github.com/willforde/python-htmlement

Parsing HTML with a filter

Here I’ll be using a slightly more complex "HTML document" that will be "parsed" using "htmlement with a filter" to fetch only the menu items. This can be very useful when dealing with large "HTML documents" since it can be a lot faster to only "parse the required section" and to ignore everything else. ::

html = """
<html>
  <head>
    <title>Coffee shop</title>
  </head>
  <body>
    <ul class="menu">
      <li>Coffee</li>
      <li>Tea</li>
      <li>Milk</li>
    </ul>
    <ul class="extras">
      <li>Sugar</li>
      <li>Cream</li>
    </ul>
  </body>
</html>
"""

# Parse the document
import htmlement
root = htmlement.fromstring(html, "ul", attrs={"class": "menu"})

In this case I'm not unable to get the title, since all elements outside the filter were ignored. But this allows me to be able to extract all "list_item elements" within the menu list and nothing else. ::

# Get all listitems
for item in root.iterfind(".//li"):
    # Get text from listitem
    print(item.text)

And the output is as follows: ::

Coffee
Tea
Milk

.. _html.parser.HTMLParser: https://docs.python.org/3.6/library/html.parser.html#html.parser.HTMLParser .. _ElementTree.Element: https://docs.python.org/3.6/library/xml.etree.elementtree.html#xml.etree.ElementTree.Element .. Xpath: https://docs.python.org/3.6/library/xml.etree.elementtree.html#xpath-support __ XPath

Keywords

FAQs


Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc