Get startedGet started for free

Deleting a bucket

Sam is feeling more and more confident in her AWS and S3 skills. After playing around for a bit, she decides that the gim-test bucket no longer fits her pipeline and wants to delete it. It's starting to feel like dead weight, and Sam doesn't want it littering her beautiful bucket list.

She has already created the boto3 client for S3, and assigned it to the s3 variable.

Help Sam do some clean up, and delete the gim-test bucket.

This exercise is part of the course

Introduction to AWS Boto in Python

View Course

Exercise instructions

  • Delete the 'gim-test' bucket.
  • Get the list of buckets from S3.
  • Print each 'Buckets' 'Name'.

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# Delete the gim-test bucket
s3.____(____='gim-test')

# Get the list_buckets response
response = s3.____()

# Print each Buckets Name
for bucket in response['____']:
    print(bucket['____'])
Edit and Run Code