boto3 config windows code example
Example 1: pip install boto3
pip install boto3
Example 2: boto3 with aws profile
import boto3
session = boto3.Session(profile_name='dev')
dev_s3_client = session.client('s3')
pip install boto3
import boto3
session = boto3.Session(profile_name='dev')
dev_s3_client = session.client('s3')