Created
December 6, 2022 16:57
-
-
Save oscarojasgtz/4c0193aa57e41ec1e2b72adbf2b9f175 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import boto3 | |
s3_resource = boto3.resource('s3') | |
buckets = [] | |
for bucket in s3_resource.buckets.all(): | |
buckets.append(bucket.name) | |
print(buckets) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment