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
'''
)
'Computer Science > Python' 카테고리의 다른 글
[가상환경] pyenv를 통한 가상환경 설정 (goodbye conda) (0) | 2024.09.22 |
---|---|
[Python] Class 상속 후 필요없는 Parameter 선언 안하기, 일부 Method만 Override (0) | 2022.11.13 |
[Crawling] BeautifulSoup, Selenium으로 회사 사이트에서 동명이인 찾기 (0) | 2022.04.19 |