简体   繁体   中英

Python Boto3 update/overwrite object in S3 bucket

I can't find Python source code example to update/overwrite an object in an Amazon S3 Bucket.

Is this possible?

From the docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3.html#S3.Client.put_object

If you want to overwrite the object you just upload the file with the same name and if that name already exists it'll be done automatically.

Extra note: If you want to keep all historic versions of the object enable versioning on the bucket.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM