0

我使用pod从 django 生成报告。一个非常聪明的解决方案,我喜欢它。

但是 pod 解决方案需要在客户端桌面(或服务器端)上安装 Open Office(或 LibreOffice)。

为了避免使用 Open Office 软件,我希望将报告作为 django 应用程序(或 python ...)的新(或现有)文档发送到谷歌驱动器。

有人会分享这类问题的专业知识吗?否则,从 django 应用程序发布谷歌文档的步骤是什么?

4

1 回答 1

0

If your Python app can produce a csv file, you can upload it to Google Docs using the Documents List API and convert it into a Spreadsheet:

https://developers.google.com/google-apps/documents-list/#creating_or_uploading_spreadsheets

Many other file formats can be imported, please check the docs for more details.

于 2012-06-20T21:05:08.360 回答