Answers for "Upload file to S3 bucket Python boto.s3"

1

boto3 upload file to s3

import boto3
s3 = boto3.resource('s3')
s3.meta.client.upload_file('/tmp/hello.txt', 'mybucket', 'hello.txt')
Posted by: Guest on June-24-2020
0

python boto3 ypload_file to s3

s3.meta.client.upload_file(Filename=filename_and_full_path, Bucket=my_bucket, Key=prefix_key_plus_filename_only)
Posted by: Guest on September-03-2021

Code answers related to "Upload file to S3 bucket Python boto.s3"

Python Answers by Framework

Browse Popular Code Answers by Language