vote up 7 vote down star
6

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?

flag

47% accept rate

2 Answers

vote up 10 vote down check

You can use the reportlab library to generate a PDF from Python. You can just include the ReportLab files in with your application's code, or you can include a zip archive of the ReportLab code, and insert it into your application's sys.path.

link|flag
Does reportlab actually work under AppEngine? I was under the possibly-mistaken impression that it uses C extensions, which AppEngine doesn't allow. – Robert Rossney Jan 8 at 21:38
Reportlab is pure Python, but it uses PIL for images, so you won't be able to use it for PDFs containing images. – Nick Johnson Jan 9 at 11:13
GAE now supports PIL so that should not be a problem. – Federico Builes Jun 4 at 15:32
Does this actually work? Reading the reportlab API, you seem to have to write to a file. That's not possible on GAE. – Gareth Simpson Aug 9 at 8:22
2  
You can write to any file-like object, meaning that you could write to, say, response.out. For example, konryd.blogspot.com/2008/04/… – Paul Fisher Aug 9 at 11:39
show 1 more comment
vote up 3 vote down

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

link|flag

Your Answer

Get an OpenID
or

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