Tagged Questions

boto: Python interface to Amazon Web Services

learn more… | top users | synonyms

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
873 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
687 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
919 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
1answer
347 views

Python client support for running Hive on top of Amazon EMR

I've noticed that neither mrjob nor boto supports a Python interface to submit and run Hive jobs on Amazon Elastic MapReduce (EMR). Are there any other Python client libraries that supports running ...
3
votes
3answers
899 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
833 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
1answer
507 views

How do I create an EC2 image from a running instance using boto?

I'm trying to create a simple python backup script for my EC2 instances. This script's purpose is to create daily/weekly snapshots of the current machine (see this question on ServerFault). I'm using ...
3
votes
2answers
788 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
481 views

How can store a file on Google Storage from URL on Google App Engine?

I want to create a service on Google App Engine (Python) that will receive a URL of an image and store it on Google Storage. I managed to upload from a local file using boto or gsutil command line, ...
3
votes
2answers
468 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
60 views

Amazon Web Service Usage Cost through Command Line

I am working on Amazon Web Service (EC2, S3) to set up an instances given the following detail on the account. (I don't have administrative rights to the Amazon account through the web browser) ...
2
votes
2answers
59 views

Process for telling when a new ec2 host can be connected to

I've been using fabric and boto to start up new ec2 hosts for some temporary processing but I've always had trouble knowing when I can connect to the host. The problem is that I can ask ec2 when ...
2
votes
2answers
1k views

Using Boto to find to which device and EBS Volume is mounted

How do I find to which device and EBS Volume is mounted with Python Boto (v2.0) boto.ec2.Volume https://github.com/boto/boto/blob/master/boto/ec2/volume.py has some interesting properies e.g. ...
2
votes
2answers
380 views

Amazon SQS region from EC2 Instance

If I create SQS queue from an EC2 instance without specifying the region in the API call, in which region will the queue be created. When I run boto.sqs.regions() I get 4 regions from an NON ec2 ...
2
votes
1answer
433 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
77 views

How do I loop over all items in a DynamoDB table using boto?

I'd like to query a DynamoDB table and retrieve all the items and loop over them using boto. How do I structure a query or scan that returns everything in the table?
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
45 views

autoscaling with boto

I'm trying to configure autoscaling with boto using scaling policies and metric alarms rather than triggers now that they are being deprecated. I have successfully created a launch configuration and a ...
1
vote
1answer
42 views

Amazon EC2 Boto: Filter out registered AMI

Let say I have 20 registered AMI. Is there a way to filter out only registered AMI using boto API command line? E.g. get_all_volumes() get_all_images() get_all_instances() get_all_snapshots(), etc ...
1
vote
1answer
81 views

Boto script freezing when trying to deploy and configure EC2 instances

I'm using boto in Python to automate some of my EC2 workflow. The issue is very strange - the script appears to freeze on an assignment of a simple variable, but it is continuing in the background. ...
1
vote
1answer
72 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
193 views

Boto EC2: Create an instance with tags

Is there a way with the boto python API to specify tags when creating an instance? I'm trying to avoid having to create an instance, fetch it and then add tags. It would be much easier to have the ...
1
vote
1answer
39 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
46 views

Boto: how to keep EMR job flow running after completion/failure?

How can I add steps to a waiting Amazon EMR job flow using boto without the job flow terminating once complete? I've created an interactive job flow on Amazon's Elastic Map Reduce and loaded some ...
1
vote
2answers
57 views

Amazon Web Service: Different between Images and Instances

What is the different between starting an AWS Image and Instances? Example: I do notice when I am running AWS image using boto, I can only stop the Image while running AWS instance using boto, I can ...
1
vote
2answers
84 views

Amazon Web Service/Boto: Upload and execute remote python/bash script via SSH on localhost

I am able to fire up AWS Ubuntu EC2 instance with boto. Have anyone tried to upload the script to the remote Ubuntu EC2 (More than 1) and execute the script via SSH locally? The main objective is to ...
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
133 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
2answers
210 views

Count(*) on a SimpleDB table of millions of entries

How long should it take to get a response for the statement SELECT count(*) FROM db_name on a SimpleDB table of millions of entries? (currently my table >16M). Shouldn't there some sort of ...
1
vote
1answer
258 views

How do i get the public dns of an instance in AWS using BOTO python

I get the elb details of a specific region say europe then i am able to get the instances that are related the the ELB. the problem is i am not able to get the public dns of those instances. what i do ...
1
vote
1answer
279 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
351 views

Issues trying to SSH into a fresh EC2 instance with Paramiko

I'm working on a script that spins up a fresh EC2 instance with boto and uses the Paramiko SSH client to execute remote commands on the instance. For whatever reason, the Paramiko client is unabled to ...
1
vote
0answers
150 views

boto ElasticMapReduce throttling and rate limiting

I've run into rate limting from Amazon EMR a few times via boto API with the following: boto.exception.EmrResponseError: EmrResponseError: 400 Bad Request <ErrorResponse ...
1
vote
0answers
45 views

Get the number of completed steps in an Amazon Elastic MapReduce jobflow via boto

To avoid the overhead of setting up instances everytime I submit a job, I use a jobflow that's always in waiting mode after each job completion. However, according to this page, "a maximum of 256 ...
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
138 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
2answers
373 views

What is wrong with my boto elastic mapreduce jar jobflow parameters?

I am using the boto library to create a job flow in Amazons Elastic MapReduce Webservice (EMR). The following code should create a step: step2 = JarStep(name='Find similiar items', ...

1 2 3