Tagged Questions

0
votes
1answer
22 views

Disable boto logging without modifying the boto files.

I am using the Boto library to talk to AWS. I want to disable logging. (Or redirect to /dev/null or other file). I cant find an obvious way to do this. I tried this, but that doesn …
0
votes
0answers
13 views

how do I use SonofMMM public AMI and BOTO to convert video in my existing PHP based web application

Hi all I have developed a web app that users can upload video to and have it converted. So far I have been using a LAMP based EC2 instance to upload videos to and then call a thir …
0
votes
2answers
52 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 …
0
votes
6answers
185 views

Downloading a Large Number of Files from S3

What's the Fastest way to get a large number of files (relatively small 10-50kB) from Amazon S3 from Python? (In the order of 200,000 - million files). At the moment I am using b …
0
votes
1answer
186 views

Cast a class instance to a subclass

I'm using boto to manage some EC2 instances. It provides an Instance class. I'd like to subclass it to meet my particular needs. Since boto provides a query interface to get your i …