IPWorks S3 2020 Python Edition

Questions / Feedback?

upload_part Method

Uploads a multipart upload part.

Syntax

def upload_part(object_name: str, part_number: int, upload_id: str) -> None: ...

Remarks

This method uploads a part for the multipart upload of the object named ObjectName specified by UploadId.

PartNumber specifies the part's number; it must be a value in the range 1 to 10000, inclusive. If a part with the given number already exists in the specified multipart upload, it is replaced with the newly-uploaded part.

The data to upload is taken from either local_file or object_data (whichever data is found in first, when checked in that order). Each part must be at least 5MB in size, except for the last part in the overall multipart upload, which can be any non-zero size.

If the IncludePartMD5 configuration setting is True, the class will include an MD5 digest of its data when sending it to the server. The server will then verify that the data was received without corruption.

Note: This method is not supported when service_provider is spGoogleStorage (2); Google Cloud Storage does not support multipart uploads.

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks S3 2020 Python Edition - Version 20.0 [Build 8178]