Comment puis-je voir ce qu'il y a dans un compartiment dans S3 avec boto3
? (c'est-à-dire faire un "ls"
)?
Procédez comme suit:
import boto3
s3 = boto3.resource('s3')
my_bucket = s3.Bucket('some/path/')
Retour:
s3.Bucket(name='some/path/')
Comment voir son contenu?