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
Post a Comment