将csv/excel文件上传到appengine(python)进行处理

发布于 2024-11-06 11:09:03 字数 90 浏览 0 评论 0原文

我需要能够将 excel 或 csv 文件上传到 appengine,以便服务器可以处理行并创建对象。任何人都可以提供或向我指出如何完成此操作的示例吗?感谢您的帮助。

I need to be able to upload an excel or csv file to appengine so that the server can process the rows and create objects. Can anyone provide or point me to an example of how this is done? Thanks for your help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

天涯离梦残月幽梦 2024-11-13 11:09:03

您可能想要上传到 Blobstore。然后读取数据并使用csv 模块。

您可能需要考虑将 Excel(和其他)格式的文件发送到 google 文档,然后通过 电子表格 API

Uploading to the Blobstore is probably what you are after. Then reading the data and processing it with the csv module.

You might want to look into sending your file to google docs in the case of excel (and other) formats then reading the rows back via the Spreadsheets API

凑诗 2024-11-13 11:09:03

如果您指的是一次性(或几次)传输,您可能正在寻找批量上传系统:http://code.google.com/appengine/docs/python/tools/uploadingdata.html

如果您在使用过程中谈论常规上传,则需要处理它们作为对应用程序的发布请求。

If you mean a one-off (or a few) transfers, you're probably looking for the bulk upload system: http://code.google.com/appengine/docs/python/tools/uploadingdata.html

If you're talking about regular uploads during use, you'll need to handle them as post requests to the application.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文