Come posso vedere cosa c'è dentro un bucket in S3 con boto3
? (cioè fare un "ls"
)?
Procedere come segue:
import boto3
s3 = boto3.resource('s3')
my_bucket = s3.Bucket('some/path/')
ritorna:
s3.Bucket(name='some/path/')
Come vedo il suo contenuto?