Tagged Questions

9
votes
1answer
1k views

Django Storage Backend for S3

I'm looking for a good Django custom storage backend for use with Amazon S3. I've been googling around and found a lot of blog posts with code snippets or half-baked gist.github.com one-off jobs. But ...
9
votes
3answers
6k views

amazon S3 boto - how to create folder?

how can i create a folder under a bucket using boto library for amazon s3, i followed the manual, and create keys with contents with permission, metadata etc, but no where in the boto's documentation ...
5
votes
3answers
878 views

Storing images and thumbnails on s3 in django

I'm trying to get my images thumbnailed and stored on s3 using django-storages, boto, and sorl-thumbnail. I have it working, but it's very slow, even with small images. I don't mind it being slow when ...
5
votes
3answers
2k views

Amazon S3 boto: how to rename a file in a bucket?

How to rename a file in a bucket with boto?
4
votes
1answer
42 views

AWS S3 object lifecycle through Boto

How does one manage an S3 object's lifecycle through boto? I can't find anything related to that subject in the API documentation.
4
votes
1answer
691 views

Django + S3 (boto) + Sorl Thumbnail: Suggestions for optimisation

I am using S3 storage backend across a Django site I am developing, both to reduce load from the EC2 server(s), and to allow multiple webservers (redundancy, load balancing) access the same set of ...
4
votes
1answer
743 views

How to change metadata on an object in Amazon S3

If you have already uploaded an object to an Amazon S3 bucket, how do you change the metadata using the API? It is possible to do this in the AWS Management Console, but it is not clear how it could ...
4
votes
3answers
922 views

Django Boto S3 Access

I can't figure this out. Here's what I want to happen ... I have an applications that users upload files to S3 using boto and django. I want those files to be private and only accessible through my ...
3
votes
3answers
900 views

Why are no Amazon S3 authentication handlers ready?

I have my $AWS_ACCESS_KEY_ID and $AWS_SECRET_ACCESS_KEY environment variables set properly, and I run this code: import boto conn = boto.connect_s3() and get this error: ...
3
votes
1answer
834 views

How do I get the file / key size in boto S3?

There must be an easy way to get the file size (key size) without pulling over a whole file. I can see it in the Properties of the AWS S3 browser. And I think I can get it off the "Content-length" ...
3
votes
2answers
791 views

Fastest way to download 3 million objects from a S3 bucket

I've tried using Python + boto + multiprocessing, S3cmd and J3tset but struggling with all of them. Any suggestions, perhaps a ready-made script you've been using or another way I don't know of? ...
3
votes
2answers
469 views

Is is possible to read a file from S3 in Google App Engine using boto?

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 ...
3
votes
2answers
1k views

Problem uploading image file to Amazon S3 in Django using BOTO Library

I am a total beginner to programming and Django so I'd appreciate help that beginner can get his head round! I was following a tutorial to show how to upload images to an Amazon S3 account with the ...
2
votes
1answer
104 views

How can I use boto to stream a file out of Amazon S3 to Rackspace Cloudfiles?

I'm copying a file from S3 to Cloudfiles, and I would like to avoid writing the file to disk. The Python-Cloudfiles library has an object.stream() call that looks to be what I need, but I can't find ...
2
votes
1answer
434 views

Django as S3 proxy

I extended a ModelAdmin with a custom field "Download file", which is a link to a URL in my Django project, like: http://www.myproject.com/downloads/1 There, I want to serve a file which is stored ...
2
votes
1answer
689 views

Python Boto S3 to work with Custom Domains in Amazon S3

How do I use the Python Boto library with S3 where the URL's it generate will be my CNAME'd subdomain to the Amazon S3 Server. By default it uses the default format BUCKETNAME.s3.amazonaws.com but ...
2
votes
2answers
353 views

How to download a file via the browser from Amazon S3 using Python (and boto) at Google App Engine?

I have a python script running inside the Google App Engine with boto 1.9b that gets all keys inside a S3-Bucket. The output is formated as a HTML-Table. bucket_instance = ...
1
vote
0answers
18 views

Python Boto download S3 subdirectories to Windows

I am using Python Boto to download all the files in a bucket to my windows system. The problem is that there are subdirectories on the bucket (or whatever you call them). This is my partial code which ...
1
vote
1answer
75 views

How to use AWS S3 policies to enforce ownership of resources for federated users?

I'm writing an app where I have a set of users, and each user will have a number of files associated with them in a 'directory' within an S3 bucket. Users will be authenticating using Amazon's STS, ...
1
vote
1answer
40 views

Add “default” headers to all boto requests?

Is it possible to set default headers for boto requests? Basically I want to include a couple of headers in every API call I make to S3.
1
vote
1answer
53 views

Do AWS Canonical UserIDs exist for AWS Federated Users (temporary security credentials)?

Does a canonical user id exist for a federated user created using STS? When using boto I need a canonical user id to grant permissions to a bucket. Here's a quick tour through my code: I've ...
1
vote
1answer
137 views

Using boto library on S3

Is there a way to change the key of an S3 file? For example, I want to be able to do the equivalent of: >>> from boto.s3.key import Key >>> k=Key(bucket) >>> ...
1
vote
2answers
134 views

Client side s3 upload and returning the public url of the image

I am writing a client side image uploader library for python. I need to upload an image to Amazon S3 and return the public URL of the image. I can do this using BOTO however I have to share my Secret ...
1
vote
1answer
280 views

How to delete a s3 version from a bucket using boto and python

when I try to delete a bucket using the lines: conn = boto.connect_s3(AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY) print conn.delete_Bucket('BucketNameHere').message It tells me the bucket I tried to ...
1
vote
1answer
117 views

Getting newest S3 keys first

I am writing an app that stores (potentially millions of) objects in an S3 bucket. My app will take the most recent object (roughly), process it, and write it back to the same bucket. I need a way of ...
1
vote
1answer
144 views

Can you use multipart upload in boto with strings instead of a file handler?

Is it possible to use the S3 multipart upload with strings instead of a file? The strings i am using are being generated during the upload process and so the size and the exact content is unknown the ...
1
vote
1answer
207 views

S3's BOTO is returning NoSuchKey while trying to copy an existing key

I've create a key on S3. mykey.exists() returns true mykey.get_contents_to_filename() generates a file that is correct But: mykey.copy('bucket', '/backup/file') returns: NoSuchKey The Specified ...
1
vote
1answer
170 views

How to convert a unicode key name so amazon-s3 will recognize it?

In a django application, I am receiving a POST variable with a name of a file uploaded into amazon s3. But I receive the key in unicode, and when I pass the key to boto and amazon s3, nothing is ...
1
vote
1answer
139 views

AppEngine: Getting only 1KB when uploading from an fetched URL to S3

I´m trying to upload a file which is fetched from a server. But when the fetched file is bigger than 1MB there will be only a 1KB small file saved at S3. When it´s smaller than 1MB, the file will be ...
1
vote
1answer
389 views

Uploading multiple files to s3 using one put request

I've got alot of small files that I'd like to put into s3. My goal is to minimize cost and use the fewest amount of put request's as possible. Is there anyway to stream multiple files onto s3 using ...
1
vote
1answer
365 views

python s3 using boto, says 'attribute error: 'str' object has no attribute 'connection'

I have a connection that works as I can list buckets, but having issues when trying to add a object. conn = S3Connection(awskey, awssecret) key = Key(mybucket) key.key = p.sku ...
1
vote
1answer
153 views

Comparing uncompressed local files to compressed files stored on Amazon S3?

We put hundreds of image files on Amazon S3 that our users need to synchronize to their local directories. In order to save storage space and bandwidth, we zip the files stored on S3. On the user's ...
1
vote
2answers
201 views

Amazon S3 as secure backup without multiple invoices

I'm storing copies of database backups on Amazon S3 using the Python Boto library. But I worry that if my web server was hacked, those backups could be deleted using the credentials I need to do the ...
1
vote
5answers
651 views

How to clone a key in Amazon S3 using Python (and boto)?

I have a file contained in a key in my S3 bucket. I want to create a new key, which will contain the same file. Is it possible to do without downloading that file? I'm looking for a solution in Python ...
0
votes
1answer
16 views

AWS S3 changes in a bucket / prefix using boto

What is the most efficient way (i.e. lower cost :) to check for any changes to a bucket according to a prefix? In other words, is there a way to check if there were new/updated/deleted files in a ...
0
votes
1answer
61 views

Why are my Amazon S3 key permissions not sticking?

I'm using the Python library boto to connect to Amazon S3 and create buckets and keys for a static website. My keys and values are dynamically generated, hence why I am doing this programmatically ...
0
votes
2answers
81 views

Django Boto and Upload to S3 is a 400 Bad Request

I am trying to create a super simple file upload script using the boto library, not any others. From what I have tried it feels like it should work, but it doesn't. The error I am getting now is: ...
0
votes
1answer
96 views

s3- boto- list files within a bucket by upload time

I need to download every hour 100 newest files from s3 server. bucketList = bucket.list(PREFIX) The code above creates list of the files but it is not depend on the uploading time of the files, ...
0
votes
1answer
115 views

Boto (Python)- reversed bucket list

Does anyone know how to get reversed bucket list. bucketList = self.bucket.list(PREFIX) bucketList.reverse() does not work. Thanks, Ron.
0
votes
0answers
135 views

Using nodejs and knox how do I see the files in an S3 Bucket

I upload files in many different ways to my s3 bucket. In python i could use boto like this: from boto.s3.connection import S3Connection conn = S3Connection('access-key','secret-access-key') bucket ...
0
votes
1answer
92 views

SSLError on Google App Engine (local dev-server)

When I try to use boto library on App Engine, I get the next error: Traceback (most recent call last): File "C:\Program Files\Google\google_appengine\google\appengine\ext\webapp\_webapp25.py", line ...
0
votes
1answer
52 views

Resuming an s3 bucket listing via boto

I'm iterating over 2 million objects thusly: - conn = boto.connect_s3('xxx','xxx') bucket = conn.lookup('bucket_name') for key in bucket.list(): somefunction(key.name) Say it fails at the ...
0
votes
0answers
46 views

Inserting items in sub-buckets on S3 using boto

Say I have the following bucket set up on S3 MyBucket/MySubBucket And, I am planning on serving static media for a website out of MySubBucket (like images users have uploaded, etc.). The way the S3 ...
0
votes
2answers
259 views

Upload resized image to S3

I'm trying to upload resized image to S3: fp = urllib.urlopen('http:/example.com/test.png') img = cStringIO.StringIO(fp.read()) im = Image.open(img) im2 = im.resize((500, 100), Image.NEAREST) AK = ...
0
votes
1answer
340 views

Django, Boto, S3: Why am I not getting a response suddenly?

This has been driving me crazy and I can't figure out where the issue is. AWS is having issues right now, but this problem was happening before all that and continues to exhibit same behavior. ...
0
votes
1answer
223 views

Django application with user images hosted in Amazon S3

I want to create a web application where user can upload their own images and they will be hosted on Amazon S3... but the problem is that I will need them resized (and croped) in various sizes (that ...
0
votes
1answer
308 views

How do I generate a temporary token for someone to post to my S3 account?

http://boto.s3.amazonaws.com/s3_tut.html#setting-getting-the-access-control-list-for-buckets-and-keys I'm using boto. My friend says it's possible to just generate a temporary (expires in 5 min?) ...
0
votes
1answer
123 views

Selecting keys based on metadata, possible with Amazon S3?

I'm sending files to my S3 bucket that are basically gzipped database dumps. They keys are a human readable date ("2010-05-04.dump"), and along with that, I'm setting a metadata field to the UNIX time ...
0
votes
1answer
80 views

Saving Python Complex Data Types to Amazon S3

Can Python class data be saved to S3 without marshalling? I am trying to cut down of I/O operations until necessary.
0
votes
2answers
207 views

How to copy a file via the browser to Amazon S3 using Python (and boto)?

Creating a file (key) into Amazon S3 using Python (and boto) is not a problem. With this code, I can connect to a bucket and create a key with a specific content: bucket_instance = ...

1 2