boto: Python interface to Amazon Web Services
0
votes
0answers
8 views
EBS volume stuck on 'creating' when using Boto API
I'm attempting to create and attach a new EBS volume to an existing instance using Boto. The Boto script is running on the instance itself.
The problem is that the status continuously returns ...
0
votes
2answers
13 views
Setting file on S3 as read-only with Boto
How do you set a key on S3 using Boto so you won't accidentally overwrite it later? Is there a way to make it read-only or at least give you some sort of error if you eventually try to write to the ...
1
vote
0answers
15 views
Strange failure to make a HIT for Amazon Mechanical Turk with some URLs?
I was trying to include a link in a HIT request in Amazon Mechanical Turk, using boto, and kept getting an error that my XML was invalid. I gradually pared my html down to the bare minimum, and ...
0
votes
1answer
13 views
Group HITs into batches in amazon mechanical turk with boto?
I followed this tutorial to create HITs on amazon Mturk. I notice, however, that all my HITs are listed as individual tasks---I have to click on "manage HITs individually" in the upper right, here, ...
0
votes
1answer
12 views
S3 bucket created from AWS management console not accessible with boto
I have a couple of buckets for an Amazon AWS account. Using boto I can see all the buckets with:
conn = boto.connect_s3()
buckets = conn.get_all_buckets()
print buckets
However when trying to get a ...
0
votes
0answers
9 views
Inserting None values into DynamoDB using Boto
I'm new to Boto, and I'm trying to use it to insert a Python dictionary into Amazon DynamoDB. I must be missing something, because the "dynamizer" (encoder) does not seem to support None values. ...
0
votes
1answer
16 views
How can I use s3 object names as inputs to an MRJob mapper, but not the s3 objects themselves?
I'm missing something obvious about Yelp's mrjob job library. Setting up an MRJob class is almost trivially easy. Running it over a file or stdin also so. But how can I change the input to the job ...
1
vote
0answers
20 views
DynamoDB hash key int vs string
I've tried using UUID's integer representation as integer hash key in DynamoDB, but that has failed with error:
DynamoDBValidationError: DynamoDBValidationError: 400 Bad Request
{'message': ...
0
votes
1answer
9 views
Boto S3 logging bucket delete
I have a set of buckets that have logging enabled and they're sending all their logs to a single bucket. If I delete the logging bucket, do I have to go and disable logging on all the buckets? Will ...
1
vote
0answers
17 views
block device mappings for Amazon aws/ec2 images
I have two related questions - or problems - with the Amazon ec2 API.
While I really want to use python and the boto package and that's how I
present the code below, I get exactly the same results ...
0
votes
0answers
23 views
Is it possible to use variables in cloud-config
When using cloud init's #cloud-config to create configuration files, how would I go about using variables to populate values?
In my specific case I'd like to autostart EC2 instances as preconfigured ...
2
votes
0answers
56 views
Alarm Action “Terminate EC2 Instance” failed
when I start a certain type of instance the userdata-script creates a metric + alarm via Boto.
The metric delivers its data to CloudWatch correctly.
The alarm should terminate the instance as an ...
0
votes
1answer
23 views
How to validate Amazon access key and secret key is correct?
I wrote a function to validate the AWS keys by just creating the ec2 connection object
try:
ec2Conn = boto.ec2.connect_to_region(region,aws_access_key_id=access_key, ...
0
votes
1answer
47 views
Python Boto created cloud-init #include script not running on EC2
I've run out of ideas, would appreciate some help.
I'm starting and EC2 Ubuntu 12.04 instance and adding the following script to the user data:
#!/usr/bin/env python
import sys
from ...
0
votes
2answers
25 views
Boto doubles all get request cycles by design
To get an object out of S3 using Boto, you have to call something like (at least this is the only documented way I can find):
key = bucket.get_key(some_id)
data = key.get_contents_as_string()
...
2
votes
1answer
35 views
How stable is EBS?
I'm thinking about saving data from EC2 instances to the EBS and later save the result on S3. I don't have a lot of experience working with EBS, so my questions are:
How stable they are? I mean how ...
0
votes
0answers
12 views
How to check for a SNS in ec2?
As far as I understand SNS can push messages to subscribers. I have a simple script that will push message to the SQS. But what I want to do is basically: I have an SNS topic, Have an EC2 instance, ...
2
votes
2answers
60 views
How do I create a list of files stored in my Amazon S3 bucket and display them as download links?
I have a number of videos in an Amazon S3 bucket and I want to display them as a list on my website. Clicking on any item in the list will download the video.
I am using Python and Flask. I currently ...
0
votes
1answer
12 views
Unexpected behavior for s3boto
I'm working with amazon S3 storage and have unexpected behavior: storage.exists() returns False for directories. Am I doing everything right? As I understand django documentation, it should return ...
0
votes
1answer
33 views
How to change private S3 bucket setting to serve images as http (not https) with django-storages?
I am using boto with django-storages to upload images directly to S3 from my django form. Everything is ok, except image url is https. I think having https is overkill and not required for media ...
0
votes
0answers
20 views
How can I get boto to generate signed URLs for S3 that trigger downloads?
I've attempted this:
connection = S3Connection(
aws_access_key_id=settings.AWS_ACCESS_KEY_ID,
aws_secret_access_key=settings.AWS_SECRET_ACCESS_KEY)
url = connection.generate_url(
60,
...
1
vote
0answers
18 views
Filter for a vpc_id value of None
I have an environment that includes VPC and non-VPC.
This works as expected
filters={ 'vpc_id': 'vpc-xxxxxxxx',}
groups = conn.get_ec2().get_all_security_groups(filters=filters)
I get back all of ...
2
votes
1answer
40 views
How do I get the most recent Cloudwatch metric data for an instance using Boto?
I'm trying to get the most recent data for CPU utilization for an instance (actually, several instances, but just one to start with), however the following call doesn't return any data:
cw = ...
3
votes
1answer
32 views
Starting a stopped EC2 instance with Boto
I am writing a python script that starts a specific instance that is currently stopped, and I am kind of stumped on how I'd do that. As far as I can understand from the Boto EC2 introduction on ...
0
votes
1answer
19 views
Anyway to get dkims records for verifying ses domain in boto?
Tinkering around with verifying a couple of domains and found the manual process rather tedius. My DNS controller offers API access so I figured why not script the whole thing.
Trick is I can't ...
0
votes
0answers
44 views
S3ResponseError: 403 Forbidden using boto
I have a script that copy files from one S3 account to another S3 account, It was working befoure!!!! That's for sure. Than I tried it today and it doesn't any more it gives me error S3ResponseError: ...
1
vote
1answer
30 views
Including Boto Library in Elastic Beanstalk
I am in search of how to include the Boto library in an Elastic Beanstalk instance. I was under the impression I had to specify it in .ebextensions. Unfortunately, this doesn't seem to work (see ...
1
vote
1answer
71 views
Map Reduce multiple outputs in python boto
I am trying to partition an input file using AWS EMR.
I use a streaming step to read from stdin.
I want to split this file into 2 files based on the values of specific fields from each line of stdin ...
1
vote
1answer
227 views
Unable to install boto in a virtualenv
I was able to install boto==2.9.0 inside global site-packages, but when I try to install the same within a virtualenv, it fails with the following error.
Running setup.py egg_info for package boto
...
0
votes
0answers
32 views
Backup S3 bucket to a new date.time based bucket. Then, do incremental backup per new bucket and Delete old buckets
Trying to follow the same logic of https://github.com/roseperrone/aws-backup-rake-task I'm wondering if she or anybody else could help improving that script backup task Rose proposed.
Basically, we ...
1
vote
1answer
23 views
DynamoDB: handling throttling with boto
According to DynamoDB docs, requests causing database throttling are automatically retried if using the supported SDKs. However, I was unable to find any mention about how boto handles throttling ...
1
vote
0answers
43 views
The installed Boto library must be 2.4 or higher error when using django-storages on ec2
I'm trying to connect to Amazon s3 from a Django application running on Amazon ec2 to upload and serve media files. I'm using django-storages to connect to s3 via the python boto library.
I can get ...
0
votes
1answer
28 views
django storages with boto using pirvate ACL throws 404 on save
I am using django-storages with boto. Everything works fine if I let storages handle S3 file uploads in my model as public.
However when I set the ACL to private on save/update I get this error ...
0
votes
1answer
66 views
Splitting a file using Map Reduce
I would like to split the content of a text file into 2 different files using EMR.
The input file, as well as the mapper and reducer scripts are all stored in AWS' S3.
Currently, my mapper reformats ...
0
votes
1answer
55 views
Using Amazon s3 boto library, how can I get the URL of a saved key?
I am saving a key to a bucket with:
key = bucket.new_key(fileName)
key.set_contents_from_string(base64.b64decode(data))
key.set_metadata('Content-Type', 'image/jpeg')
...
0
votes
0answers
74 views
boto S3 & flask error - Authorization header is invalid — one and only one ' ' (space) required
I have some code that was working just fine yesterday - now I'm getting an error.
s3 = get_s3_connection()
b_temp = s3.get_bucket(current_app.config['AWS_S3_BUCKET_TEMP'])
b_assets = ...
2
votes
1answer
79 views
How can I programmatically check Amazon S3 permissions with boto?
We have a bushy tree in a bucket on Amazon S3 with a large number of files. I just discovered that while some files have two permissions entries, as seen if one clicks on a file in the AWS Management ...
1
vote
1answer
29 views
Mass Restore a Prior Version on Amazon's S3
So. I'm an idiot. I programmatically overwrote about 14,000 files in a bucket Friday and didn't realize it until today. Luckily, the files are versioned. Unluckily, I can't find a good clear ...
0
votes
0answers
70 views
trouble generating thumbnail from image when using boto/django-storages and amazon s3
I'm using the gist found here https://gist.github.com/valberg/2429288 to generate thumbnails upon save. It works locally but not in production where I get an AttributeError:
fp is at EOF. Use ...
1
vote
1answer
59 views
Will I get charge for transfering files between S3 accounts using boto's bucket.copy_key() function?
I wrote a little script that copies files from bucket on one S3 account to the bucket in another S3 account.
In this script I use bucket.copy_key() function to copy key from one bucket in another ...
2
votes
1answer
84 views
Running Boto on Google App Engine (GAE)
I'm new to Python and was hoping for help on how to 'import boto.ec2' on a GAE Python application to control Amazon EC2 instances. I'm using PyDev/Eclipse and have installed boto on my Mac, but using ...
0
votes
0answers
32 views
How to Upload CSV Documents to Amazon CloudSearch using boto
Is There is any way to upload documents to Amazon CloudSearch in csv format using boto library (via API).I tried official documentation from boto ,but documentation only describes about uploading json ...
0
votes
0answers
53 views
copy files from s3 to glacier
The following code is working as expeceted and showing bucket name, file name. for e.g.
<Key: vivafree,Master.csv.2012-04-10-17-52-39.gz>
<Key: vivafree,Master.csv.2012-07-12-23-00-49.gz>
...
0
votes
2answers
158 views
Backup DynamoDB Table with dynamic columns to S3
I have read several other posts about this and in particular this question with an answer by greg about how to do it in Hive. I would like to know how to account for DynamoDB tables with variable ...
0
votes
1answer
22 views
HIT instance has no attribute 'Title' for HITs returned by boto
I'm using the boto library to play around with Amazon MTurk. I want to retrieve some reviewable HITs, and display their properties. For example:
hits = ...
0
votes
0answers
29 views
Download from Glacier
I am able to upload a file to glacier vault. But how do I download a file?
import boto
ACCESS_KEY_ID = "abc"
SECRET_ACCESS_KEY = "pqr"
glacier_connection = ...
2
votes
1answer
71 views
How can I add a tag to a key in boto (Amazon S3)?
I am trying to tag a key that I've uploaded to S3. In the same below I just create a file from a string. Once I have they key, I'm not sure how to tag the file. I've tried Tag as well as TagSet.
from ...
0
votes
2answers
69 views
accessing AWS S3 from a desktop app securely
I have data from multiple users inside a single S3 account. My desktop app has an authentication system which let the app know who the user is and which folder to access on S3. but the desktop app has ...
2
votes
1answer
52 views
Why isn't boto returning the number of bytes written to S3?
I'm using boto in a python script. After doing all the setup, I am trying to see if an upload to S3 succeeded by comparing the size of the file on disk with the number of bytes actually written to S3.
...
0
votes
1answer
57 views
Check unique hash_key in dynamodb - python
i'm trying to check existence of an hash_key in dynamodb with boto (i can not update my filed if exist)
i've try with query
for i in self.table.query(hask_key=[value]):
print i['url']
But ...


