我想创建一个可以在Google appengine上运行的应用程序。

但是,此应用程序需要能够动态生成PDF。

我该怎么办?

最佳答案

您可以使用 reportlab library从Python生成PDF。您可以只在应用程序的代码中包括ReportLab文件,也可以在ReportLab代码中包括zip archive,然后将其插入到应用程序的sys.path中。

07-24 16:17