Top "Boto" questions

boto is an open-source Python Interface to Amazon Web Services

How to get the row count of a table instantly in DynamoDB?

I'm using boto.dynamodb2, and it seems I can use Table.query_count(). However it had raised an exception when …

python amazon-dynamodb boto
Unable to connect aws s3 bucket using boto

AWS_ACCESS_KEY_ID = '<access key>' AWS_SECRET_ACCESS_KEY = '<my secret key>…

python amazon-web-services amazon-s3 boto
Django storages: Import Error - no module named storages

I'm trying to use Django's storages backend (for BotoS3) settings.py: INSTALLED_APPS = ( ... 'storages', ... ) as shown in http://django-storages.readthedocs.…

django amazon-s3 boto python-django-storages
Boto - Uploading file to a specific location on Amazon S3

This is the code I'm working from import sys import boto import boto.s3 # AWS ACCESS DETAILS AWS_ACCESS_KEY_…

python amazon-web-services amazon-s3 boto
create an ec2 instance with multiple key pairs

While creating an ec2 instance, we provide a key pair name. But generally, I associate multiple ssh public/private keys …

amazon-web-services ssh cloud boto ssh-keys
How to append a value to list attribute on AWS DynamoDB?

I'm using DynamoDB as an K-V db (cause there's not much data, I think that's fine) , and part of 'V' …

python amazon-web-services amazon-dynamodb boto
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 …

python amazon-s3 boto
How to get the region of the current user from boto?

Problem: I'm trying to get the region of the authenticated user from boto3. Use case: I'm working on adding cache …

python amazon-web-services amazon-ec2 boto aws-sdk
Difference between s3cmd, boto and AWS CLI

I am thinking about redeploying my static website to Amazon S3. I need to automate the deployment so I was …

amazon-s3 boto s3cmd aws-cli
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 …

python amazon-ec2 amazon-web-services boto