boto / s3transfer

Amazon S3 Transfer Manager for Python
Apache License 2.0
209 stars 133 forks source link

[question] Streaming download equivalent to boto3's StreamingBody from get_object? #314

Open jonathanunderwood opened 1 month ago

jonathanunderwood commented 1 month ago

When needing to process large files from S3 and write them back to S3, a common pattern is to use get_object and then read from the response Body (a StreamingBody instance) as required, and then write back to S3. This means the file can be processed entirely in memory. What is the s3transfer equivalent of this in-memory streamed processing?