python - Can I read from the AppEngine BlobStore using the remote api -


i trying read (and subsequently save) blobs blobstore using remote api. error: "no api proxy found service "blobstore"" when execute read. here stub code:

    b in bs.blobinfo.all().fetch(100):         blob_reader = bs.blobreader(str(b.key))         file = blob_reader.read() 

the error occurs on line: file = blob_reader.read() reading file personal appspot via terminal with:

python tools/remote_api/blobstore_download.py --servername=myinstance.appspot.com --appid=myinstance 

so, reading blobstore possible via remote api? or code bad? suggestions?

we added blobstore support remote_api. make sure you're using latest version of sdk, , error should go away.


Comments

Popular posts from this blog

apache - Add omitted ? to URLs -

redirect - bbPress Forum - rewrite to wwww.mysite prohibits login -

php - How can I stop spam on my custom forum/blog? -