Django PDF views, the easy way
Project description
Django PDF rendering, the easy way.
Developed at en.ig.ma software shop.
Development Version
Info: Add support for Django 4 in 0.1.4 version
Note: This fork support Django>=2.0 with “xhtml2pdf” as rendering backend! Support with WeasyPrint is not tested! Note: A new PDF rendering backend using WeasyPrint for more accurate rendering is in development under the develop branch. See https://github.com/nigma/django-easy-pdf/pull/34 for changes, testing and discussion.
Overview
This app makes rendering PDF files in Django really easy. It can be used to create invoices, bills and other documents from simple HTML markup and CSS styles. You can even embed images and use custom fonts.
The library provides both Class-Based View that is almost a drop-in replacement for Django’s TemplateView as well as helper functions to render PDFs in the backend outside the request scope (i.e. using Celery workers).
Quickstart
Install django-easy-pdf3 package:
$ pip install django-easy-pdf3
or add django-easy-pdf3 to your requirements.txt
Add easy_pdf to INSTALLED_APPS.
Create HTML template for PDF document and add a view that will render it:
{% extends "easy_pdf/base.html" %} {% block content %} <div id="content"> <h1>Hi there!</h1> </div> {% endblock %}
from easy_pdf.views import PDFTemplateView class HelloPDFView(PDFTemplateView): template_name = 'hello.html'
You can also use a mixin to output PDF from Django generic views:
class PDFUserDetailView(PDFTemplateResponseMixin, DetailView): model = get_user_model() template_name = 'user_detail.html'
Documentation
The full documentation is at django-easy-pdf.readthedocs.io.
A live demo is at easy-pdf.herokuapp.com. You can run it locally after installing dependencies by running python demo.py script from the cloned repository or through Docker with make demo.
Dependencies
django-easy-pdf3 depends on:
django>=2.0
xhtml2pdf>=0.2b1
reportlab
License
django-easy-pdf3 is released under the MIT license.
Other Resources
GitHub repository - https://github.com/olksndrdevhub/django-easy-pdf3
PyPi Package site - https://pypi.python.org/pypi/django-easy-pdf3
Bug Tracker - https://github.com/olksndrdevhub/django-easy-pdf3/issues
Commercial Support
This app and many other help us build better software and focus on delivering quality projects faster. We would love to help you with your next project so get in touch by dropping an email at en@ig.ma.
History
0.1.4 (2021-01-30)
Add Django 4 support
0.1.2 (2021-01-30)
Update for Django >= 2.0 <= 3.1
0.1.1 (2017-04-19)
Update for Django 1.11 and Python 3
0.1.0 (2014-01-24)
First release
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
Built Distribution
File details
Details for the file django-easy-pdf3-0.1.4.tar.gz
.
File metadata
- Download URL: django-easy-pdf3-0.1.4.tar.gz
- Upload date:
- Size: 9.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5c406cf07abc986cedde94552a332c24b14e72693e7d1d0db5b392012aac9919 |
|
MD5 | 9f0235c777465ca9a1e2ddfad976ffbb |
|
BLAKE2b-256 | d2291f2d96c5a110bc1db1d15495b425da2f5cef03eb1c7692611f592865f158 |
File details
Details for the file django_easy_pdf3-0.1.4-py2.py3-none-any.whl
.
File metadata
- Download URL: django_easy_pdf3-0.1.4-py2.py3-none-any.whl
- Upload date:
- Size: 9.2 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8c7ad5b8923834bff8c94ffa5a10bbaad41250eb3ccbacccd0062c64f41719dc |
|
MD5 | c395f16cab9f54b8af70fd39e5c41f5d |
|
BLAKE2b-256 | 2d5f02fed81a090179224348eb716d5926d9e505eba4e3977d0899fc622b56a4 |