Top "Boto" questions

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

Querying for greatest value of Range key on AWS DynamoDb

What is the DynamoDB equivalent of SELECT MAX(RANGE_KEY) FROM MYTABLE WHERE PRIMARYKEY = "value" The best I can come …

boto amazon-dynamodb
boto issue with IAM role

I'm trying to use AWS' recently announced "IAM roles for EC2" feature, which lets security credentials automatically get delivered to …

python amazon-s3 amazon-web-services boto
How to generate a temporary url to upload file to Amazon S3 with boto library?

I know how to download a file in this way: key.generate_url(3600) But when I tried to upload: key.…

python amazon-s3 amazon-web-services boto
Python: Amazon S3 cannot get the bucket: says 403 Forbidden

I have a bucket for my organization in Amazon S3 which looks like mydev.orgname I have a Java application …

python amazon-s3 boto
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 …

python logging amazon-web-services boto
Filtering ec2-instances with boto

I use tags to keep track of my EC2 instances, such as (Project, Environment). I have a use case where …

amazon-web-services boto
How to create a s3 bucket using Boto3?

I want to enable cloudtrail logs for my account and so need to create an s3 bucket.I wanted to …

python amazon-web-services amazon-s3 boto boto3
Upload image available at public URL to S3 using boto

I'm working in a Python web environment and I can simply upload a file from the filesystem to S3 using …

python django amazon-s3 boto
How to close Boto S3 connection?

I'm using Boto to connect to Amazon S3 in my Python program. I'm able to open a connection and upload …

python security amazon-web-services amazon-s3 boto
How can I copy files bigger than 5 GB in Amazon S3?

Amazon S3 REST API documentation says there's a size limit of 5gb for upload in a PUT operation. Files bigger …

python amazon-s3 boto