Skip to main content

XHTML2PDF

PyPI version Python versions Tests Linting Spelling Coveralls Read the Docs

Release Notes can be found here: Release Notes As with all open-source software, its use in production depends on many factors, so be aware that you may find issues in some cases.

Big thanks to everyone who has worked on this project so far and to those who help maintain it.

About

xhtml2pdf is a HTML to PDF converter using Python, the ReportLab Toolkit, html5lib and pypdf. It supports HTML5 and CSS 2.1 (and some of CSS 3). It is completely written in pure Python, so it is platform independent.

The main benefit of this tool is that a user with web skills like HTML and CSS is able to generate PDF templates very quickly without learning new technologies.

Please consider support this project using Patreon or Bitcoins: bc1qmr0skzwx5scyvh2ql28f7gfh6l65ua250qv227

Documentation

The documentation of xhtml2pdf is available at Read the Docs.

And we could use your help improving it! A good place to start is doc/source/usage.rst.

Installation

This is a typical Python library and can be installed using pip:

pip install xhtml2pdf

Requirements

Only Python 3.10+ is tested and guaranteed to work.

All mandatory requirements are listed in the pyproject.toml file and are installed automatically using the pip install xhtml2pdf method.

As PDF library we depend on reportlab, which needs a rendering backend to generate bitmaps and vector graphic formats. For more information about this, have a look at the reportlab docs.

The recommended choice is the cairo graphics library which has to be installed system-wide e.g. via the OS package manager in combination with the PyCairo extra dependency:

pip install xhtml2pdf[pycairo]

The renderpm extra is a deprecated alias for pycairo. ReportLab 5 removed the C RenderPM backend, so pycairo is now the only backend.

Alternatives

You can try WeasyPrint. The codebase is pretty, it has different features and it does a lot of what xhtml2pdf does.

Call for testing

This project is heavily dependent on getting its test coverage up! Furthermore, parts of the codebase could do well with cleanups and refactoring.

If you benefit from xhtml2pdf, perhaps look at the test coverage and identify parts that are yet untouched.

Development environment

  1. If you don’t have it, install pip, the python package installer:

    sudo easy_install pip

    For more information about pip refer to http://www.pip-installer.org

  2. We will recommend using venv for development.

  3. make devsetup automates the steps below: it creates .venv, installs xhtml2pdf in editable mode with the test, docs and release extras (the latter brings in build and twine), and installs the pre-commit hooks. Run it and skip to activating the environment:

    make devsetup
    source .venv/bin/activate

    Or do it by hand:

  4. Create a virtual environment for the project. This can be inside the project directory, but cannot be under version control:

    python -m venv .venv
  5. Activate your virtual environment:

    source .venv/bin/activate

    Later to deactivate it use:

    deactivate
  6. The next step will be to install/upgrade dependencies from the pyproject.toml file:

    pip install -e .[test,docs,release]
  7. Run tests to check your configuration:

    tox

    You should have a log with the following success status:

    congratulations :) (75.67 seconds)

Python integration

Some simple demos of how to integrate xhtml2pdf into a Python program may be found here: test/simple.py

Running tests

Two different test suites are available to assert that xhtml2pdf works reliably:

  1. Unit tests. The unit testing framework is currently minimal, but is being improved on a regular basis (contributions welcome). They should run in the expected way for Python’s unittest module, i.e.:

    tox
  2. Functional tests. Thanks to mawe42’s super cool work, a full functional test suite is available at testrender/.

You can run them using make

make test       # run tests
make test-ref   # generate reference data for testrender
make test-all   # Run all test using tox

Contact

This project is community-led! Feel free to open up issues on GitHub about new ideas to improve xhtml2pdf.

History

These are the major milestones and the maintainers of the project:

  • 2000-2007 Dirk Holtwick (commercial project of spirito.de)

  • 2007-2010 Dirk Holtwick (project named “pisa”, project released as GPL)

  • 2010-2012 Dirk Holtwick (project named “xhtml2pdf”, changed license to Apache)

  • 2012-2015 Chris Glass (@chrisglass)

  • 2015-2016 Benjamin Bach (@benjaoming)

  • 2016-2018 Sam Spencer (@LegoStormtroopr)

  • 2018-Current Luis Zarate (@luisza)

For more history, see the Release Notes.

License

Copyright 2010 Dirk Holtwick, holtwick.it

Licensed under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at: http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Download files

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

Source Distribution

xhtml2pdf-0.2.18.tar.gz (212.8 kB view details)

Uploaded Source

Built Distribution

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

xhtml2pdf-0.2.18-py3-none-any.whl (161.3 kB view details)

Uploaded Python 3

File details

Details for the file xhtml2pdf-0.2.18.tar.gz.

File metadata

  • Download URL: xhtml2pdf-0.2.18.tar.gz
  • Upload date:
  • Size: 212.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.5

File hashes

Hashes for xhtml2pdf-0.2.18.tar.gz
Algorithm Hash digest
SHA256 2e1a8ec7a060497deaaeb87a607bdf1e6a23f69bb16edb25937b081b3aedd059
MD5 80794adf57331f5db5b7a6c38dfe6515
BLAKE2b-256 50e9afe9880fa3f705f8ec1ca68891179b56b66f6701d13522033aaf737bfa74

See more details on using hashes here.

File details

Details for the file xhtml2pdf-0.2.18-py3-none-any.whl.

File metadata

  • Download URL: xhtml2pdf-0.2.18-py3-none-any.whl
  • Upload date:
  • Size: 161.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.5

File hashes

Hashes for xhtml2pdf-0.2.18-py3-none-any.whl
Algorithm Hash digest
SHA256 f1d327c83954a278d5fb99810527e37446aea4a8b6789458e863991f6373a512
MD5 cbf5b47330ddd7a420c6d1c6f1dddede
BLAKE2b-256 40202ec3daf7d263d89542182180b33cdacd3eee1be144bbb0907eb648d308db

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.2.18 This release

2 files

0.2.17

2 files

0.2.16

2 files

0.2.15

2 files

0.2.14

2 files

0.2.13

2 files

0.2.12

2 files

0.2.11

1 file

0.2.10

1 file

0.2.9

1 file

0.2.8

2 files

0.2.7

2 files

0.2.6

2 files

0.2.5

1 file

0.2.4

1 file

0.2.3

1 file

0.2.2

1 file

0.2.1

1 file

0.2

1 file

0.0.6

2 files

0.0.5

2 files

0.0.4

2 files

0.0.3

2 files

0.0.2

2 files

0.0.1

2 files

0.0.0

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page