Skip to main content

Create PDFs from scratch using simple, easy to use APIs

Project description

Python PDF Generator

https://pypi.org/project/pdfpug/ https://pdfpug.readthedocs.io/en/latest/?badge=latest

PdfPug is a tool that makes it easy to create beautiful PDF files from scratch. It provides simple and easy to use APIs that allow for quick creation of PDF files. PdfPug consists of small building blocks/components like Table, List, Header etc. and the ability to customise these components to suit different use cases.

Note: PdfPug is a very new package whose APIs are not stable. It can be considered to be in pre-alpha development stage! Keep an eye out for updates.

Here is an example,

>>> from pdfpug import Header, Paragraph, PdfReport
>>> intro_header = Header('Introduction to PdfPug')
>>> para = Paragraph(
...     "Lorem Ipsum is <b>simply</b> <u>dummy</u> text of the printing and typesetting "
...     "industry. Lorem Ipsum has been the industry's standard dummy text "
...     "ever since the 1500s, when an unknown printer took a galley of type"
...     " and scrambled it to make a type specimen book. It has survived not "
...     "only five centuries, but also the leap into electronic typesetting, "
...     "remaining essentially unchanged. It was popularised in the 1960s with "
...     "the release of Letraset sheets containing Lorem Ipsum passages, and "
...     "more recently with desktop publishing software like Aldus PageMaker "
...     "including versions of Lorem Ipsum."
... )
>>> report = PdfReport()
>>> report.add_element(intro_header)
>>> report.add_element(para)
>>> report.generate_pdf('pdfpug-report.pdf')

Installation

PdfPug is published on PyPi and can be installed from there:

$ pip install pdfpug

Documentation

Documentation is available from https://pdfpug.readthedocs.io/en/latest/

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

pdfpug-0.4.0.tar.gz (123.8 kB view hashes)

Uploaded Source

Built Distribution

pdfpug-0.4.0-py3-none-any.whl (153.9 kB view hashes)

Uploaded Python 3

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