user5939813
user5939813

Reputation:

How to generate a pdf using Django

I am using Django 1.9. I am making an app which outputs an inventory as PDF. Also using this library I can preview the pdf before finally outputting it. Which library can I use for this? Any suggestions..

Upvotes: 2

Views: 141

Answers (1)

the_unknown_spirit
the_unknown_spirit

Reputation: 2586

ReportLab is a library that outputs PDF files dynamically using Django views. You can go through https://docs.djangoproject.com/en/1.9/howto/outputting-pdf/ to learn more about it.

Upvotes: 1

Related Questions