Is it possible to upload blob to blobstore using remote API (not the standard upload scheme)?
I want to write backup/restore script for my application and blobstore is the only thing that doesn't work.
Is it possible to upload blob to blobstore using remote API (not the standard upload scheme)?
I want to write backup/restore script for my application and blobstore is the only thing that doesn't work.
Blobstore access over Remote API was added three days ago:
- Remote API now supports the Blobstore API. (Changelog)
remote_api works at the lowest level of the datastore, so once you've set up the stub, you don't have to worry about the fact that you're operating on a remote datastore: With a few caveats, it works exactly the same as if you were accessing the datastore directly. (App Engine Help)
I once solved the problem of programmatically uploading to the blobstore and wrote a short tutorial/explanation for it on my blog. Hope it's useful: http://swizec.com/blog/programatically-uploading-to-blobstore-in-python/swizec/1423