I'd like to create an application that would run on Google's appengine.
However, this application needs to be able to generate PDFs dynamically.
How could I do this?
|
I'd like to create an application that would run on Google's appengine. However, this application needs to be able to generate PDFs dynamically. How could I do this?
| ||||
|
feedback
|
|
You can use the | |||||||||||||
feedback
|
|
To overcome the number-of-files limit in google appengine, you could package your reportlib in a zip file and use it. Be sure you check out this issue i bumped into.. http://code.google.com/p/googleappengine/issues/detail?id=1085 Also, you can use pisa, htmllib and pyPdf to generate the pdf using html templates. All the best. varun | |||
|
feedback
|
|
Google has a new "Conversion API" that may solve all your problems. Here's a description from the site:
| |||
|
feedback
|
|
I would recommend PyFPDF, which is a pure-Python port of the lightweight yet highly powerful PHP FPDF library. It is hardly a few dozen kilobytes. | |||
|
feedback
|