我在Python中使用Boto从我的S3存储桶下载文件。
这很好用:
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,因为我将使用一些相当大的文件(900 MB +)。
但是,当我尝试以下操作时,它会失败:
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'
download_file方法的参数是相同的。我正在使用最新版本的boto(1.2.3)。发生了什么事?
答案 0 :(得分:6)
当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')