Metadata-Version: 2.1
Name: pdfme
Version: 0.2.2
Summary: Create PDFs easily
Home-page: https://github.com/aFelipeSP/pdfme
Author: Andrés Felipe Sierra Parra
Author-email: cepfelo@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/aFelipeSP/pdfme/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Multimedia :: Graphics
Requires-Python: >=3.4
Description-Content-Type: text/markdown
License-File: LICENSE

# pdfme

This is a powerful library to create PDF documents easily.

## Main features

* You can create a document without having to worry about the position of each
  element in the document. But you have the possibility to place any element
  wherever you want too.
* You can add rich text paragraphs (paragraphs with text in different sizes,
  fonts, colors and styles).
* You can add tables and place whatever you want on their cells, span columns
  and rows, and change the fills and borders in the easiest way possible. 
* You can add content boxes, a multi-column element where you can add
  paragraphs, images, tables and even content boxes themselves. The elements inside this
  content boxes are added from top to bottom and from left to right.
* You can add url links (to web pages), labels/references and footnotes anywhere
  in the document.
* You can add running sections, content boxes that will be included in every
  page you add to the document. Headers and footers are the most common running
  sections, but you can add running sections anywhere in the page.
## Installation

You can install using pip:
```
pip install pdfme
```

## Documentation

* Docs and examples: https://pdfme.readthedocs.io



