Timeout on large file upload

You can write to S3 using boto3, here’s an example provided by AWS:

https://docs.aws.amazon.com/code-samples/latest/catalog/python-s3-s3-python-example-upload-file.py.html

import boto3

S3 = boto3.client('s3')

SOURCE_FILENAME = 'filename'
BUCKET_NAME = 'bucket-name'

S3.upload_file(SOURCE_FILENAME, BUCKET_NAME, SOURCE_FILENAME)
1 Like