Skip to main content

Django PDF views, easily convert html responses to pdf responses

Project description

Django PDF rendering, easily convert html responses to pdf responses

Latest Version Wheel License

Developed by William Otieno.

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

  1. Include dj-easy-pdf, xhtml2pdf in your requirements.txt file. If you are on Python 3 you need to install the latest version of Reportlab and the beta version of xhtml2pdf:

    $ pip install dj-easy-pdf
  2. Add easy_pdf to INSTALLED_APPS.

  3. 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'
  4. 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'
  5. If you’re using Function Based views then:

    from easy_pdf.rendering import render_to_pdf_response
    
    def pdf_output(request):
        context = {}
        return render_to_pdf_response(request, "output.html", context)

Documentation

The full documentation is at dj-easy-pdf.readthedocs.io.

Dependencies

dj-easy-pdf depends on:

  • django>=3.2

  • xhtml2pdf

  • reportlab

License

dj-easy-pdf is released under the MIT license.

Other Resources

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 jimmywilliamotieno@gmail.com

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

dj-easy-pdf-0.4.7.tar.gz (10.1 kB view details)

Uploaded Source

Built Distribution

dj_easy_pdf-0.4.7-py2.py3-none-any.whl (9.1 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file dj-easy-pdf-0.4.7.tar.gz.

File metadata

  • Download URL: dj-easy-pdf-0.4.7.tar.gz
  • Upload date:
  • Size: 10.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.17

File hashes

Hashes for dj-easy-pdf-0.4.7.tar.gz
Algorithm Hash digest
SHA256 7a276eacb2351118e451d577791b3fba6df8fe5478ec7052cf76998976554744
MD5 22f28986e319db99404aae80a33f0b30
BLAKE2b-256 0454c2780c02ef7c4b90819fc83a4c9699668f0cb12778841ad2d6098e4b873a

See more details on using hashes here.

File details

Details for the file dj_easy_pdf-0.4.7-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for dj_easy_pdf-0.4.7-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 cc260ed553e52cf15504bc33532aa122267e120696897e0848c24ab8dc757fde
MD5 7f0c9dd3b0711b64645a01bd2d51ba32
BLAKE2b-256 a168d2826854ec0faf4debdc64c37a84adbd827badddff29af7ea51e537e311c

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