Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

what's the best Python PDF library ?
I need to make some PDF with many grid.
I'm looking for a library that allow to manage pages (multi-page): the library should calculate when the page is ended and then create the next page.

share|improve this question

closed as not constructive by Kev Oct 27 '12 at 16:46

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

4 Answers

up vote 8 down vote accepted

The two that come to mind are:

share|improve this answer
From reading pyPdf's documentation, it appears to manipulate existing PDFs. Is there a Python library that will print/convert to PDF? Thanks. – octopusgrabbus Aug 5 '11 at 15:46
4  
These libraries don't make PDFs. They just edit them. – monokrome Mar 5 '12 at 8:27
Maybe, this Q&A can help - stackoverflow.com/questions/1180115/… – Wonil Dec 21 '12 at 6:16

Reportlab. There is an open source version, and a paid version which adds the Report Markup Language (an alternative method of defining your document).

share|improve this answer

I already have used Reportlab in one project.

share|improve this answer

There is also http://appyframework.org/pod.html which takes a LibreOffice or OpenOffice document as template and can generate pdf, rtf, odt ... To generate pdf it requires a headless OOo on some server. Documentation is concise but relatively complete. http://appyframework.org/podWritingTemplates.html If you need advice, the author is rather helpful.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.