Top "Boto" questions

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

DynamoDB : The provided key element does not match the schema

Is there a way to get an item depending on a field that is not the hashkey? Example My Table …

python amazon-web-services amazon-dynamodb boto
Mocking boto3 S3 client method Python

I'm trying to mock a singluar method from the boto3 s3 client object to throw an exception. But I need …

python mocking boto boto3 botocore
Move files between two AWS S3 buckets using boto3

I have to move files between one bucket to another with Python Boto API. (I need it to "Cut" the …

python amazon-s3 boto
Getting S3 objects' last modified datetimes with boto

I'm writing a Python script that uploads files to S3 using Boto. I only want to upload changed files (which …

python amazon-s3 amazon-web-services boto
Read a file line by line from S3 using boto?

I have a csv file in S3 and I'm trying to read the header line to get the size (these …

python amazon-s3 boto
Amazon S3 boto - how to delete folder?

I created a folder in s3 named "test" and I pushed "test_1.jpg", "test_2.jpg" into "test". How can I …

python amazon-s3 boto
How can i get list of only folders in amazon S3 using python boto

I am using boto and python and amazon s3. If i use [key.name for key in list(self.bucket.…

python amazon-s3 boto
Using boto to invoke lambda functions how do I do so asynchronously?

SO I'm using boto to invoke my lambda functions and test my backend. I want to invoke them asynchronously. I …

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

python amazon-s3 boto
How to create an ec2 instance using boto3

Is it possible to create an ec2 instance using boto3 in python? Boto3 document is not helping here, and I …

python amazon-web-services amazon-ec2 boto boto3