批量文件上传Appengine
我有大约 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.