Method
uploadPart POST
Copy POST

Uploads part of a large dataset file from your bucket to our system. Our system currently supports parts of up to 5GB and full files of up to 5TB. Note that each part must be at least 5MB in size, unless it is the last part in the sequence of parts for the full file.

Arguments:

REQUIRED KEY TYPE DESCRIPTION
Yes uploadId str A unique identifier for this upload.
Yes partNumber int The 1-indexed number denoting the position of the file part in the sequence of parts for the full file.
Yes partData bytes The multipart/form-data for the current part of the full file.
Note: The arguments for the API methods follow camelCase but for Python SDK underscore_case is followed.

Response:

KEY TYPE DESCRIPTION
success Boolean true if the call succeeded, false if there was an error
result UploadPart
KEY TYPE Description
etag str A unique string for this part.
md5 str The MD5 hash of this part.
Language: