Python HTML to PDF reporting engine
Project description
ZipReport
Documentation: https://zipreport.github.io/zipreport/
Transform HTML templates into beautiful PDF or MIME reports, with full CSS and client Javascript support, under a permissive license.
Want to see it in action? Check this example!
Highlights:
- Create your reports using Jinja templates;
- Customize the Jinja Environment();
- Dynamic image support (embedding of runtime-generated images);
- Reports are packed in a single file for easy distribution or bundling;
- Optional MIME processor to embed resources in a single email message;
- Support for browser-generated JS content (with zipreport-server);
- Support for headers, page numbers and ToC (using PagedJS, see details below);
Requirements:
- Python >= 3.8
- Jinja2 >= 3.1
- Compatible backend for pdf generation (zipreport-server, xhtmltopdf, or WeasyPrint);
v2.x.x breaking changes
Starting with zipreport 2.0.0, support for the electron-based zipreport-cli rendering backend is removed; using a zipreport-server version 2.0.0 or later - preferably using a docker container, is now the recommended approach.
The behavior of the JS event approach has also changed; PDF rendering can now be triggered via console message, instead of dispatching an event. If you use JS events to trigger rendering, you need to update your templates.
Old method:
(...)
// signal PDF generation after all DOM changes are performed
document.dispatchEvent(new Event('zpt-view-ready'))
(...)
New method, starting with v2.0.0:
(...)
// signal PDF generation after all DOM changes are performed
console.log('zpt-view-ready')
(...)
Installation
Installing via pip:
$ pip install zipreport-lib
TL;DR; example
Using zipreport-cli backend to render a report file:
from zipreport import ZipReport
from zipreport.report import ReportFileLoader
# existing zpt template
report_file = "report.zpt"
# output file
output_file = "result.pdf"
# template variables
report_data = {
'title': "Example report using Jinja templating",
'color_list': ['red', 'blue', 'green'],
'description': 'a long text field with some filler description',
}
# load report from file
zpt = ReportFileLoader.load(report_file)
# initialize api client
client = ZipReport("https://127.0.0.1:6543", "secretKey")
job = client.create_job(zpt)
# generate a PDF by calling the processor, using the API client
# this method returns a JobResult
result = client.render(job, report_data)
# if PDF generation was successful, save to file
if result.success:
with open(output_file, 'wb') as rpt:
rpt.write(result.report.read())
Paged.js
PagedJS is an amazing javascript library that performs pagination of HTML documents for print, under MIT license. It acts as polyfill for W3C specification for print, and allows the creation of headers, footers, page numbers, table of contents, etc. in the browser.
To use PagedJS capabilities, zipreport-server must be used as a backend.
Available backends
Zipreport-Server
zipreport-server is a headless browser daemon orchestrator, designed specifically to work with ZipReport. It can be either installed locally or run via docker.
zipreport-server is the only supported backend that enables full usage of client-side JavaScript and leveraging the PagedJS capabilities.
WeasyPrint
This backend is provided for compatibility. For new projects, please use zipreport-server.
WeasyPrint is a popular Python library to generate PDFs from HTML. It doesn't support JavaScript, and CSS is limited.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file zipreport-lib-2.2.2.tar.gz
.
File metadata
- Download URL: zipreport-lib-2.2.2.tar.gz
- Upload date:
- Size: 45.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 860477030ed23385665ebdd92861469bef719ab56c7f553b01101a87987ad52b |
|
MD5 | 39fa3e9ca77dec2fb251f226e73f5ad8 |
|
BLAKE2b-256 | 8347e96046ac9d3e591919523c904c340f3f43776a1ee0f4e58425d0665eee89 |