How to delete a file from S3 bucket using boto3

0 votes
How to delete a file from S3 bucket using boto3?
Nov 30, 2018 in AWS by Nitesh
• 3,080 points
49,616 views

1 answer to this question.

0 votes

You can delete the file from S3 bucket by using object.delete().

Here is the way I implemented it.

import boto3
s3 = boto3.resource("s3")
obj = s3.Object("aniketbucketpython", "abcd.txt")
obj.delete()

For more details on S3 and its capabilities, refer to https://www.youtube.com/watch?v=XjPUyGKRjZs

Hope this helps.

answered Nov 30, 2018 by Aniket

Related Questions In AWS

0 votes
1 answer

How to download a file from S3 buckets using boto3?

Hi@akhtar, Boto3 supports upload_file() and download_file() APIs to ...READ MORE

answered Oct 8, 2020 in AWS by MD
• 95,440 points
7,897 views
0 votes
1 answer

How to download the latest file in a S3 bucket using AWS CLI?

You can use the below command $ aws ...READ MORE

answered Sep 6, 2018 in AWS by Archana
• 4,170 points
19,037 views
0 votes
1 answer

AWS S3 uploading hidden files by default

versioning is enabled in your bucket. docs.aws.amazon.com/AmazonS3/latest/user-guide/….... the ...READ MORE

answered Oct 4, 2018 in AWS by Priyaj
• 58,090 points
5,439 views
–1 vote
1 answer

How to decrypt the encrypted S3 file using aws-encryption-cli --decrypt

Use command : aws s3 presign s3://mybucket/abc_count.png you get ...READ MORE

answered Oct 22, 2018 in AWS by Priyaj
• 58,090 points
4,858 views
0 votes
1 answer

Import my AWS credentials using python script

Using AWS Cli  Configure your IAM user then ...READ MORE

answered Nov 16, 2018 in AWS by Jino
• 5,810 points
2,587 views
0 votes
2 answers
0 votes
1 answer
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP