I want to create a process using GAE by which, given a url, a file is downloaded and stored as a blob in the blobstore. Once this is done I want to pass this blob along as POST data to a second url. However for this second part to work I need to be able to open the blob as a file instance.
I've figured out how to do the first part
from __future__ import with_statement
from google.appengine.api import files
imagefile = urllib2.urlopen('fileurl')
# Create the file
file_name = files.blobstore.create(mime_type=imagefile.headers['Content-Type'])
# Open the file and write to it
with files.open(file_name, 'ab') as f:
f.write(imagefile.read())
# Finalize the file. Do this before attempting to read it.
files.finalize(file_name)
# Get the file's blob key
blob_key = files.blobstore.get_blob_key(file_name)
But I can't figure out how to do the second part. So far I've tried
ffile = files.open(files.blobstore.get_file_name(blob_key), 'r')from google.appengine.ext import blobstoreffile = blobstore.BlobReader(blob_key)from google.appengine.ext import blobstoreffile = blobstore.BlobInfo.open(blobstore.BlobInfo(blob_key))
All of which gives Falsefor isinstance(ffile, file).
Any help is appreciated.