Adding to a text file in S3

I know how to write and read from a file in S3 using boto. I am wondering if there is a way to add to a file without having to download the file and reload the edited version?

+4
source share
1 answer

Unable to add data to an existing object in S3. You will need to capture the data locally, add additional data, and then write it back to S3.

+4
source

Source: https://habr.com/ru/post/1676408/


All Articles