1

我需要将文件上传到 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()))
4

2 回答 2

1

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

于 2016-09-19T15:29:01.843 回答
0

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

于 2020-10-02T16:41:18.303 回答