我在Python中使用Boto从我的S3 bucket下载一个文件。
这很管用:

import boto3
s3_client = boto3.resource('s3')
s3_client.meta.client.download_file('mybucket', 'db/file.00.txt', '/work/testing/file.00.txt')

我想使用S3Transfer自动使用multipart,因为我将处理一些相当大的文件(900mb+)。
但是,当我尝试以下操作时,它失败了:
import boto3
from boto3.s3.transfer import S3Transfer
s3_client = boto3.resource('s3')
transfer = S3Transfer(s3_client)
transfer.download_file('mybucket', 'db/file.00.txt', '/work/testing/file.00.txt')

我得到的错误如下:
Traceback (most recent call last):
  File "/work/sparkrun/CommonBlast.py", line 126, in <module>
    transfer.download_file('mybucket', 'db/file.00.txt', '/work/testing/file.00.txt')
  File "/usr/local/lib/python2.7/dist-packages/boto3/s3/transfer.py", line 658, in download_file
    object_size = self._object_size(bucket, key, extra_args)
  File "/usr/local/lib/python2.7/dist-packages/boto3/s3/transfer.py", line 723, in _object_size
    return self._client.head_object(
AttributeError: 's3.ServiceResource' object has no attribute 'head_object'

下载文件方法的参数相同。我正在使用最新版本的boto(1.2.3)。怎么回事?

最佳答案

S3Transfer需要客户端时,您正在传入资源。
无论如何,您也不需要创建自己的S3Transfer对象,因为它的方法已经添加到客户端和资源中。

import boto3
client = boto3.client('s3')
client.download_file('bucket', 'key', 'filename.txt')

resource = boto3.resource('s3')
bucket = resource.Bucket('bucket')
bucket.download_file('key', 'filename.txt')

obj = bucket.Object('key')
obj.download_file('filename.txt')

docs

关于python - S3Transfer download_file错误了,但是client.download_file正常工作,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35003298/

10-09 14:54