A django app to render django templates as PDF files.
Project description
django-renderpdf is a Django app to render django templates as PDF files.
Introduction
Rendering PDFs for web developers is generally pretty non-trivial, and there’s no common approach to doing this. django-renderpdf attempts to allow reusing all the known tools and skills when generating a PDF file in a Django app:
Use Django template files, which are internally rendered as HTML and them PDF files.
Use staticfiles app to include any CSS or image files.
Simply subclass a PDFView class which has an interface very similar to Django’s own built-in View classes.
Background
django-renderpdf actually started out as code on multiple of my own projects (including some public ones).
After some time, it became clear that I’d been copy-pasting PDF-related bits across different projects, and since co-workers expressed interest in this design (using the Django templating system to generate PDFs), it finally made sense to move this into a separate library.
Because of this, documentation is still a work in progress (the code far outdates this API being public), and while unit tests are lacking, this code has had ample field testing
Usage example
Sorry, no docs yet! Though PDFView’s methods has extensive docstrings you should check.
Here’s a usage code example for a view that generates some PDF labels for some shipments:
class LabelsView(LoginRequiredMixin, PDFView):
template_name = 'my_app/labels.html'
def get_context_data(self, *args, **kwargs):
context = super().get_context_data(*args, **kwargs)
context['shipments'] = models.Shipment.objects.filter(
batch_id=kwargs['pk'],
)
return context
And in urls.py:
from django.urls import path
path(
'/shipments/labels/<int:pk>/',
views.LabelsView.as_view(),
name='shipment_labels',
),
Changelog
v2.0.0
Support for Python 3.7 and 3.8.
Support Django 2.2, 3.0 and 3.1.
Drop support for Django < 2.2.
Licence
django-renderpdf is licensed under the ISC licence. See LICENCE for details.
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
Hashes for django_renderpdf-2.0.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 08cd6557f04b5c90eeb6379a0a1ea817d89795dfdb8e677ae07f8464f82d5894 |
|
MD5 | 69de508648338ee7b49cc604dacd03a5 |
|
BLAKE2b-256 | 59a2f27511bc52bcdb8271201f41e729f13c735b8b8b2fa91fe05bf0487ca069 |