Created
February 1, 2021 06:40
-
-
Save sagar290/e3dc2ac45a70a730dec695e69ec2a941 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 = boto3.client('s3') | |
| for obj in s3.list_objects_v2(Bucket="lms10", Prefix="adm/")['Contents']: | |
| print(obj['Key']) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment