使用boto3上传/转移AWS S3 Bucket

时间:2016-09-17 00:53:37

标签: amazon-web-services amazon-s3 boto3 s3-bucket

我需要将文件上传到S3,我想知道应该使用哪个boto3 api调用?

我在boto3文档中找到了两种方法:

我是否使用client.upload_file()...

#!/usr/bin/python
import boto3
session = Session(aws_access_key_id, aws_secret_access_key, region)
s3 = session.resource('s3')
s3.Bucket('my_bucket').upload_file('/tmp/hello.txt', 'hello.txt')

或者我使用S3Transfer.upload_file()...

#!/usr/bin/python
import boto3
session = Session(aws_access_key_id, aws_secret_access_key, region)
S3Transfer(session).upload_file('/tmp/hello.txt', 'my_bucket', 'hello.txt')

任何建议将不胜感激。提前谢谢。

。 。

可能的解决方案......

# http://boto3.readthedocs.io/en/latest/reference/services/s3.html#examples
# http://boto3.readthedocs.io/en/latest/reference/services/s3.html#S3.Client.put_object
# http://boto3.readthedocs.io/en/latest/reference/services/s3.html#S3.Client.get_object

client = boto3.client("s3", "us-west-1", aws_access_key_id = "xxxxxxxx", aws_secret_access_key = "xxxxxxxxxx")


with open('drop_spot/my_file.txt') as file:
  client.put_object(Bucket='s3uploadertestdeleteme', Key='my_file.txt', Body=file)


response = client.get_object(Bucket='s3uploadertestdeleteme', Key='my_file.txt')

print("Done, response body: {}".format(response['Body'].read()))

2 个答案:

答案 0 :(得分:1)

最好在客户端上使用该方法。它们是相同的,但使用客户端方法意味着您不必自己设置。

答案 1 :(得分:0)

您可以使用客户端:低级服务访问权限:我在https://www.techblog1.com/2020/10/python-3-how-to-communication-with-aws.html中看到了示例代码