7
import boto
conn = boto.connect_s3('',  '')

mybucket = conn.get_bucket('data_report_321')

我可以使用以下代码从存储桶下载文件。

for b in mybucket:
     print b.name
     b.get_contents_to_filename('0000_part_00', headers=None, cb=None, num_cb=10, torrent=False, version_id=None, res_download_handler=None, response_headers=None)

但我无法上传文件。我收到一个错误:AttributeError: 'str' object has no attribute 'tell'

send_file 和 set_contents 函数按预期工作。

for b in mybucket:
     b.send_file('mytest.txt', headers=None, cb=None, num_cb=10, query_args=None, chunked_transfer=False, size=None)
     b.set_contents_from_file('mytest.txt', headers=None, replace=True, cb=None, num_cb=10, policy=None, md5=None, reduced_redundancy=False, query_args=None, encrypt_key=False, size=None, rewind=False)

如何使用 boto 将文件从本地服务器的当前目录上传到 S3 存储桶?


更新:在调用 set_contents_from_filename 函数之前,我需要先声明上传文件的密钥(文件名)。

k = boto.s3.key.Key(mybucket)
k.key = 'uploaded_file.txt'
k.set_contents_from_filename("myteswt.txt")
4

2 回答 2

10

send_fileset_contents_from_file都将File对象作为第一个参数。如果你想传递一个字符串,你应该看到set_contents_from_filename

于 2013-09-23T06:51:14.360 回答
-2

您可以使用此实用程序脚本:https ://github.com/TimelyToga/upload_s3

python upload_s3.py <filename> [key_to_upload_as]

这会将任何文件上传到您指定的 s3 存储桶。

虽然,当您上传时set_contents_from_file需要一个 pythonFile对象。

于 2014-07-30T00:32:10.293 回答