Di boto 3, metode 'Key.set_contents_from_' diganti dengan
Sebagai contoh:
import boto3
some_binary_data = b'Here we have some data'
more_binary_data = b'Here we have some more data'
# Method 1: Object.put()
s3 = boto3.resource('s3')
object = s3.Object('my_bucket_name', 'my/key/including/filename.txt')
object.put(Body=some_binary_data)
# Method 2: Client.put_object()
client = boto3.client('s3')
client.put_object(Body=more_binary_data, Bucket='my_bucket_name', Key='my/key/including/anotherfilename.txt')
Sebagai alternatif, data biner dapat berasal dari membaca file, seperti yang dijelaskan dalam dokumen resmi yang membandingkan boto 2 dan boto 3 :
Menyimpan Data
Menyimpan data dari file, aliran, atau string itu mudah:
# Boto 2.x
from boto.s3.key import Key
key = Key('hello.txt')
key.set_contents_from_file('/tmp/hello.txt')
# Boto 3
s3.Object('mybucket', 'hello.txt').put(Body=open('/tmp/hello.txt', 'rb'))