Tried this:
import boto3 from boto3.s3.transfer import TransferConfig, S3Transfer path = "/temp/" fileName = "bigFile.gz"
Result: 5.9 gig file on s3. It does not seem to contain several parts.
I found this example , but part not defined.
import boto3 bucket = 'bucket' path = "/temp/" fileName = "bigFile.gz" key = 'key' s3 = boto3.client('s3')
Question: Does anyone know how to use multi-page loading with boto3?
python amazon-s3 boto3
blehman Dec 16 '15 at 4:09 2015-12-16 04:09
source share