# RECOMMENDED WAY
import boto3
client = boto3.client(
s3, # boto3 will get the credentials either from
region_name=us-east-1 # environment vars. or the .aws/credentials file.
)
# RECOMMENDED WAY
import boto3
client = boto3.client(
s3, # boto3 will get the credentials either from
region_name=us-east-1 # environment vars. or the .aws/credentials file.
)