Emptying an S3 bucket using boto3

import boto3    

s3 = boto3.resource('s3')
bucket = s3.Bucket('my-happy-bucket')

bucket.objects.all().delete()
6 lines of code, 112 characters

Similar AWS code snippets using python

Finally, a good search for AWS Console

Was that in us-east-1? Or us-west-2? No need to remember. Just type the name of the resource and CloudTempo will find it.

Feature