批量文件上传Appengine

发布于 2024-11-18 05:57:06 字数 79 浏览 2 评论 0原文

我有大约 1500 个在本地服务器中动态生成的图像。我希望将这些上传到 Appengine 的数据存储区。我该怎么做?有什么帮助,有什么想法吗?

I have around 1500 images which are dynamically generated in my local server. I want these to upload to Appengine's datastore. How can i do this? any help, any ideas?

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

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

发布评论

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

评论(1

关于从前 2024-11-25 05:57:06

BlobStore

您可以使用 blobstore如果您有计费帐户。
因此,我假设使用 bolbstore API 通过 http 客户端工具将其分块上传。
每次上传之前,您可以要求 blobstore 提供一个唯一的上传 URL,以便将 MIME 分段帖子发布到其中。
我认为请求的大小是有限制的。

简单数据存储

如果您将图像存储在数据存储中,则可以使用python 工具 以某种方式进行同步。

BlobStore

You can use the blobstore if you have a billing account.
So I assume to use the bolbstore API to upload it in chunks with a client tool over http.
Before every upload, you can ask the blobstore to give you an unique upload URL to post MIME multipart posts to it.
There is a size limit for requests I think.

Simple DataStore

If you store your images in the datastore, you can use a python tool somehow to synchronize.

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