Reference

 

How to choose an AWS profile when using boto3 to connect to CloudFront

I am using the Boto 3 python library, and want to connect to AWS CloudFront. I need to specify the correct AWS Profile (AWS Credentials), but looking at the official documentation, I see no way to

stackoverflow.com

 

2 - Sessions — AWS Data Wrangler 2.15.1 documentation

How Wrangler handle Sessions and AWS credentials? After version 1.0.0 Wrangler absolutely relies on Boto3.Session() to manage AWS credentials and configurations. Wrangler will not store any kind of state internally. Users are in charge of managing Sessions

aws-data-wrangler.readthedocs.io

 

dev = boto3.session.Session(profile_name='dev')

df = wr.athena.read_sql_query(
	boto3_session=dev,
	sql='''
    	select *
        from schema.table
    '''
)

+ Recent posts