Answers for "boto3 s3 resource authentication"

0

boto3 with aws profile

import boto3

session = boto3.Session(profile_name='dev')
dev_s3_client = session.client('s3')
Posted by: Guest on August-07-2020

Python Answers by Framework

Browse Popular Code Answers by Language