Answers for "use boto3 with s3 to upload file to folder in bucket"

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

Code answers related to "use boto3 with s3 to upload file to folder in bucket"

Python Answers by Framework

Browse Popular Code Answers by Language