I want to manipulate a pickled python object stored in S3 in Google App Engine's sandbox. I use the suggestion in boto's documentation:
from boto.s3.connection import S3Connection
from boto.s3.key import Key
conn = S3Connection(config.key, config.secret_key)
bucket = conn.get_bucket('bucketname')
key = bucket.get_key("picture.jpg")
fp = open ("picture.jpg", "w")
key.get_file (fp)
but this requires me to write to a file, which apparently is not kosher in the GAE sandbox.
How can I get around this? Thanks much for any help
You don't need to write to a file or a StringIO at all. You can call key.get_contents_as_string()
to return the key's contents as a string. The docs for key are here.
You can write into a blob and use the StringIO to retrieve the data
from boto.s3.connection import S3Connection
from boto.s3.key import Key
from google.appengine.ext import db
class Data(db.Model)
image = db.BlobProperty(default=None)
conn = S3Connection(config.key, config.secret_key)
bucket = conn.get_bucket('bucketname')
key = bucket.get_key("picture.jpg")
fp = StringIO.StringIO()
key.get_file(fp)
data = Data(key_name="picture.jpg")
data.image = db.Blob(fp.getvalue())
data.put()
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With