BOTO3

All

Intro

When using Python and AWS a good tool to learn is BOTO3.   This will save lots of time easily, especially for SQS – queues.

BOTO3

Installing

To set up, this video is one of the best I found.

To install just use pip install boto3

Don’t forget the credentials configurations

Simple code

From the quick start

s3 = boto3.resource('s3')
# Print out bucket names
for bucket in s3.buckets.all():
    print(bucket.name)

REFs

inline

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s