Answers for "python boto3 write file to s3"

3

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 put_object to s3

file = open(r"/tmp/" + filename)
response = s3.meta.client.Bucket('<bucket-name>').put_object(Key='folder/{}'.format(filename), Body=file)
Posted by: Guest on September-03-2021

Python Answers by Framework

Browse Popular Code Answers by Language