Skip to content

xhtml2pdf

2,209 19 122 Apache-2.0
0.2.16 (8 Jun 2024) May 19 2011 675.1 thousand (month)

xhtml2pdf is a Python library that allows you to convert HTML and CSS documents to PDF files. It is built on top of ReportLab, a powerful PDF generation library for Python.

xhtml2pdf makes it easy to convert HTML and CSS documents to PDF by using ReportLab's powerful layout engine to handle the rendering of the document.

The library supports a wide variety of HTML and CSS features, including tables, lists, images, and links. It also supports several popular CSS frameworks such as Bootstrap and Foundation.

To use xhtml2pdf, you first need to install it via pip by running `pip install xhtml2pdf``. Once it is installed, you can use the xhtml2pdf.pisa.pisaDocument() function to convert an HTML file to a PDF.

Example Use


from xhtml2pdf import pisa

with open('input.html', 'r') as html_file:
    html = html_file.read()

with open('output.pdf', 'wb') as pdf_file:
    pisa.pisaDocument(html, pdf_file)

Alternatives / Similar


2,130 1.0.1 (2 years ago) Feb 09 2022 compare
545 1.6.1 (6 months ago) Feb 09 2022 compare
209 0.2.25 (2 years ago) Feb 09 2022 compare

Other Languages

160 19.0.5 (9 months ago) Jun 10 2018 compare
1,730 4.0.0 (3 years ago) Apr 18 2015 compare
Was this page helpful?