Introduction to AWS Boto in Python
Maksim Pecherskiy
Data Engineer
import boto3
s3 = boto3.client('s3',
region_name='us-east-1',
aws_access_key_id=AWS_KEY_ID,
aws_secret_access_key=AWS_SECRET)
response = s3.list_buckets()
import boto3
s3 = boto3.client('s3',
region_name='us-east-1',
aws_access_key_id=AWS_KEY_ID,
aws_secret_access_key=AWS_SECRET)
response = s3.list_buckets()
Introduction to AWS Boto in Python