Skip to main content

Turn HTML into equivalent Markdown-structured text

Project description

html2text

html2text is a Python script that converts a page of HTML into clean, easy-to-read plain ASCII text. Better yet, that ASCII also happens to be valid Markdown (a text-to-HTML format).

Usage: html2text [filename [encoding]]

Option Description
--version Show program's version number and exit
-h, --help Show this help message and exit
--ignore-links Don't include any formatting for links
--escape-all Escape all special characters. Output is less readable, but avoids corner case formatting issues.
--reference-links Use reference links instead of links to create markdown
--mark-code Mark preformatted and code blocks with [code]...[/code]

For a complete list of options see the docs

Or you can use it from within Python:

>>> import html2text
>>> print(html2text.html2text("<p><strong>Zed's</strong> dead baby, <em>Zed's</em> dead.</p>"))
**Zed's** dead baby, _Zed's_ dead.

Or with some configuration options:

>>> import html2text
>>> h = html2text.HTML2Text()
>>> # Ignore converting links from HTML
>>> h.ignore_links = True
>>> print h.handle("<p>Hello, <a href='https://www.google.com/earth/'>world</a>!")
Hello, world!

>>> print(h.handle("<p>Hello, <a href='https://www.google.com/earth/'>world</a>!"))

Hello, world!

>>> # Don't Ignore links anymore, I like links
>>> h.ignore_links = False
>>> print(h.handle("<p>Hello, <a href='https://www.google.com/earth/'>world</a>!"))
Hello, [world](https://www.google.com/earth/)!

Originally written by Aaron Swartz. This code is distributed under the GPLv3.

How to install

html2text is available on pypi https://pypi.org/project/html2text/

$ pip install html2text

Development

How to run unit tests

tox

To see the coverage results:

coverage html

then open the ./htmlcov/index.html file in your browser.

Code Quality & Pre Commit

The CI runs several linting steps, including:

  • mypy
  • Flake8
  • Black

To make sure the code passes the CI linting steps, run:

$ tox -e pre-commit

Documentation

Documentation lives here

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

html2text2-1.1.1.tar.gz (43.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

html2text2-1.1.1-py3-none-any.whl (45.2 kB view details)

Uploaded Python 3

File details

Details for the file html2text2-1.1.1.tar.gz.

File metadata

  • Download URL: html2text2-1.1.1.tar.gz
  • Upload date:
  • Size: 43.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for html2text2-1.1.1.tar.gz
Algorithm Hash digest
SHA256 ad94dcd739d18c2328c71e2964eda6a48c2924256398e57c48105ea00eff75a2
MD5 0410f0c564afd006aa11fc5fb7b82eeb
BLAKE2b-256 5fe1630393c7707781f2a23b077b524108b19797501556b2b82b7a76dbf31963

See more details on using hashes here.

Provenance

The following attestation bundles were made for html2text2-1.1.1.tar.gz:

Publisher: main.yml on CNSeniorious000/html2text

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file html2text2-1.1.1-py3-none-any.whl.

File metadata

  • Download URL: html2text2-1.1.1-py3-none-any.whl
  • Upload date:
  • Size: 45.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for html2text2-1.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 dc9b2bb3ad35ae28303e60f7863d9ae02322bb00d841024c787ffc5fa9e07de8
MD5 40930f29887a19eba168868a6fc5669f
BLAKE2b-256 86314cb0528208e111e40ff456073d06fb077ff93a49aa396470a7077744c5bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for html2text2-1.1.1-py3-none-any.whl:

Publisher: main.yml on CNSeniorious000/html2text

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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