Skip to main content

Database report generator

Project description

Introduction

PythonReports is a toolkit aimed to build database reports in Python® programs. The toolkit includes the report builder and printout renderer for PDF output.

Report builder applies a template to a sequence of uniform data objects and produces a printout structure that can be saved in a file and/or rendered to PDF.

It is possible to render printouts for other presentation formats such as a specific printer language or a GUI toolkit display. There used to be printing output for wxPython and screen display for Tkinter and wxPython, but they fell out of use and their support is discontinued.

Requirements

Current version of PythonReports has only been tested with Python v3.12. Earlier versions of Python3 may or may not work; Python2 is not supported starting from PythonReports v1.0.0.

Report building and printout rendering require the ReportLab Toolkit. Reports containing images additionally require Python Imaging Library: Pillow (preferred) or PIL.

Templates in RSON format (introduced in v0.7.0) require rsonlite.

QR barcodes (introduced in v0.8.0) require qrcode.

Quick Start

A report is built from a list of data dictionaries or data objects having uniform structure. An example of such data is a list of rows fetched from an SQL server.

Report layout is defined by a template file which can have either XML format or a textual format based on rsonlite.

Report builder applies loaded template to a list of data objects and produces a printout structure. Printout can be saved in XML format.

PDF writer creates an output file from a printout structure.

There are example templates in the package sources: sakila.prt is in XML format, and sakila.prtr is the same template in RSON format. The data file for those templates can be found in the project downloads.

This is an example of building a PDF from that data:

import pickle
from PythonReports.api import Builder, parse_rson, write_pdf

with open("sakila.dat", "rb") as data_file:
    data = pickle.load(data_file, encoding="latin1")[:200]
template = parse_rson("sakila.prtr")
build = Builder(template)
printout = build.run(data)
with open("sakila.prp", "wb") as printout_file:
    printout.write(printout_file)
# It is necessary to call .validate() on built or loaded printout
# before creating PDF output.
printout.validate()
write_pdf(printout, "sakila.pdf")

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

PythonReports-1.0.0.tar.gz (147.8 kB view details)

Uploaded Source

Built Distribution

PythonReports-1.0.0-py3-none-any.whl (120.8 kB view details)

Uploaded Python 3

File details

Details for the file PythonReports-1.0.0.tar.gz.

File metadata

  • Download URL: PythonReports-1.0.0.tar.gz
  • Upload date:
  • Size: 147.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.4

File hashes

Hashes for PythonReports-1.0.0.tar.gz
Algorithm Hash digest
SHA256 9b3e054967cde0ca86d11cecc1c8aa68a8bddd8b467ff9e1a1bf37fc93de5869
MD5 9cf271733466d5c6d4c5d876ed6752e8
BLAKE2b-256 773b612e838e476626e0f73d0bceed76c0e2f99aaf298f3e6059320639371815

See more details on using hashes here.

File details

Details for the file PythonReports-1.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for PythonReports-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 9e9eef38af6b0ee226e4449a226695a81af3c21f9e9b2900f6d53cebb6ceb6f2
MD5 5d0ac57ed8dd910ad99bab1c58e9713e
BLAKE2b-256 ca1f77cf6cd1fecb0af3a97573ace0989952b82a2cb622009829c1c0a3139df8

See more details on using hashes here.

Supported by

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