Skip to main content

Convert template html to pdf

Project description

HTML TO PDF

Convert template html to pdf

Detailed documentation is in the "docs" directory.

Quick start

  1. Install the module:

      pip install htmltopdfy
    
  2. EXAMPLE

    Import module

      from htmltopdfy.job import htmlToPdf
    

    Let suppose we have a model like this:

      class User():
         name = models.CharField(max_length=200)
         age = models.CharField(max_length=20)
         cni = models.FileField(null=True,blank=True)
    

    Let's create user

      user = User(name="dddd",age="23")
      user.save()
    

    We supposed we have a template named cni.html already designed on which we want to display name and age

      cni_file = htmlToPdf (
         media_root_url=settings.MEDIA_ROOT,
         file_name="cni",
         template_src = "cni.html",
         context_dict = {"name":"dddd","age":"20ans"}
      )
      user.cni.save("cni.pdf",cni_file)
    

    After you can print variable cni in console to see result or send url file on your response view:

      print(user.cni)
    

    or

      return Response({"cni":user.cni.url})
    

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

htmltopdfy-1.0.1.tar.gz (2.9 kB view hashes)

Uploaded Source

Built Distribution

htmltopdfy-1.0.1-py3-none-any.whl (3.1 kB view hashes)

Uploaded Python 3

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