Tags » python » boto3
TIL: Using zipstream to stream new zip files to object storage with boto3
You can construct a
zipstream.ZipFile
, add files, then wrap it in a file-like object to upload it withS3.upload_fileobj
.TIL: Using Linode object storage and boto3
If you’re calling
put_object
, you need the config optionrequest_checksum_calculation = "when_required"
.