환경


<aside>

Boto3 install


<aside>

pip install boto3

</aside>

설치 테스트


<aside>

import boto3

s3 = boto3.resource('s3')

for bucket in s3.buckets.all():
    print(bucket.name)

image.png

image.png

</aside>