Skip to main content

Django class based views to generate pdf files using html or latex template.

Project description

Django Persian PDF is a set of class based views allowing you to generate PDF reports using html or latex templates. Django Persian PDF under the hood uses two compiler to render template and build the actual pdf file:

  • Xelatex

  • Google Chrome

Using this approach avoids regular overhead for parsing html tags, improving overall response time and memory usage when generating large pdf files. Django Persian PDF follows django class based views and base on the compilers provide 4 generic view classes. The only difference is that these classes render their associated template and return a pdf file as response. Just like django views you can pass queryset or make context to be used in template. Here are the view classes available in django_persian_pdf:

  • HTMLToPDFTemplateView is an extension of django TemplateView using .html template to generate pdf file.

  • HTMLToPDFDetailView is an extension of django DetailView using .html template to generate pdf file.

  • LatexToPDFTemplateView is an extension of django TemplateView using .tex template to generate pdf file.

  • LatexToPDFDetailView is an extension of django DetailView using .tex template to generate pdf file.

Status

https://img.shields.io/github/actions/workflow/status/bindruid/django-persian-pdf/test.yml.svg?branch=master https://img.shields.io/pypi/v/django-persian-pdf.svg https://img.shields.io/pypi/pyversions/django-persian-pdf.svg https://img.shields.io/pypi/djversions/django-persian-pdf.svg

Dependencies

  • Django >= 3.2

  • Google Chrome Stable

  • xelatex

Install

pip install django-persian-pdf
  • Make sure you have installed either google-chrome-stable or texlive-xetex on your machine.

sudo apt install google-chrome-stable
sudo apt install texlive-xetex

Usage

  1. Edit settings.py and add django_persian_pdf to your INSTALLED_APPS.

  2. Inherit your views from appropriate Template or Detail view classes.

Example #1: Using HTML Template to generate a PDF response

from django_persian_pdf import views as pdf_views

class TemplatePrint(pdf_views.HTMLToPDFTemplateView):
    template_name = 'payment_reports.html'

    def get_context_data(self, **kwargs):
        context = super().get_context_data()
        context['payments'] = Payments.objects.all()
        return context

class DetailPrint(pdf_views.HTMLToPDFDetailView):
    template_name = 'payment_detail.html'
    queryset = Payments.objects.all()

Example #2: Using LaTeX Template to generate a PDF response

from django_persian_pdf import views as pdf_views

class TemplatePrint(pdf_views.LatexToPDFTemplateView):
    template_name = 'payment_reports.tex'

    def get_context_data(self, **kwargs):
        context = super().get_context_data()
        context['payments'] = Payments.objects.all()
        return context

class DetailPrint(pdf_views.LatexToPDFDetailView):
    template_name = 'payment_detail.tex'
    queryset = Payments.objects.all()

Notes on LaTeX

  1. Using latex template with persian fonts requires you to have installed your persian fonts in home directory.

mkdir ~/.fonts
cp /path_to_fonts/Vazirmatn.ttf ~/.fonts/
fc-cache -f -v
  1. In latex template make sure you have used xepersian package as last package.

  2. Define persian fonts in latex template.

  3. You can use django template tags in latex template.

Here is an example of latex template for a given view:

\documentclass[a4paper,9pt]{letter}
\usepackage[portrait,margin=0.1in]{geometry}
\usepackage{xepersian}

\settextfont{Vazirmatn}
\setlatintextfont{Vazirmatn}
\setdigitfont[Scale=1.1]{Vazirmatn}


\begin{document}

  {% for payment in payments %}
    {{ payment.trace_code }}
    \newline
    {{ payment.amount }}
    \newline
  {% endfor %}

\end{document}

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

django_persian_pdf-0.1.3.tar.gz (7.9 kB view details)

Uploaded Source

Built Distribution

django_persian_pdf-0.1.3-py3-none-any.whl (6.6 kB view details)

Uploaded Python 3

File details

Details for the file django_persian_pdf-0.1.3.tar.gz.

File metadata

  • Download URL: django_persian_pdf-0.1.3.tar.gz
  • Upload date:
  • Size: 7.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.4

File hashes

Hashes for django_persian_pdf-0.1.3.tar.gz
Algorithm Hash digest
SHA256 52548ccb6bf1a232c42d73e41fa94df13fcdbf60f4a5cda0146fe8a5c43a364d
MD5 2e072f0d15b0e56dbde41865b548245e
BLAKE2b-256 1c5620c55b543e4db43a43bc2a61727d3405d670fef42254887bb171c1848ef5

See more details on using hashes here.

File details

Details for the file django_persian_pdf-0.1.3-py3-none-any.whl.

File metadata

File hashes

Hashes for django_persian_pdf-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 073e5f8560a5da3770901e8c21a47749f3709a7cd783066f034a01e1fd32ecd8
MD5 711f41a6e1b0e6e867562840d000d537
BLAKE2b-256 ba70273bcefad31e27baa692d67db9760cdbb2554f07eff82144fc2ac4c642d3

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