Top "Boto" questions

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

Search specific file in AWS S3 bucket using python

I have AWS S3 access and the bucket has nearly 300 files inside the bucket. I need to download single file …

python amazon-s3 boto boto3 botocore
s3- boto- list files within a bucket by upload time

I need to download every hour 100 newest files from s3 server. bucketList = bucket.list(PREFIX) The code above creates list …

python amazon-s3 boto bucket
Getting AWS AMI properties

I have a list of AMIs, which I got by creating a boto connection: conn_eu = boto.ec2.connect_to_…

python amazon-ec2 boto ec2-ami
boto3: Spot Instance Creation

I'm trying to create a spot instance using boto3. Although I follow the API documentation, I receive an exception I …

python amazon-web-services amazon-ec2 boto boto3
How do I get all versions of an S3 key and undelete using boto?

I have had an S3 bucket for awhile but only now turned versioning on. Experimenting with it a bit trying …

amazon-s3 versioning boto undelete
Update DynamoDB Atomic Counter with Python / Boto

I am trying to update an atomic count counter with Python Boto 2.3.0, but can find no documentation for the operation. …

python counter atomic boto amazon-dynamodb
How do I test a module that depends on boto and an Amazon AWS service?

I'm writing a very small Python ORM around boto.dynamodb.layer2. I would like to write tests for it, but …

python testing mocking boto amazon-dynamodb
Can I use boto3 anonymously?

With boto I could connect to public S3 buckets without credentials by passing the anon= keyword argument. s3 = boto.connect_…

python amazon-web-services amazon-s3 boto boto3