我正在尝试运行看似简单的脚本,但我仍然遇到错误。如果有人能指出我所缺少的东西,我将非常感激。
请注意,我知道我不应该将密钥直接放在脚本中,并且我知道它不是最好的Python编写的,但这只是一个测试,所以我可以学习如何完成所有这些。
剧本:
import boto
def s3test():
s3 = boto.connect_s3('MY_ACCESS_KEY', 'MY_SECRET_KEY')
bucket = s3.get_bucket('the-bucket-name')
bucket.copy_key('location1/item',bucket,'location2/item')
if __name__ == "__main__":
s3test()
错误:
Traceback (most recent call last):
File "script/path", line 9, in <module>
s3test()
File "script/path", line 6, in s3test
bucket.copy_key('location1/item',bucket,'location2/item')
File "C:\Python27\lib\site-packages\boto\s3\bucket.py", line 889, in copy_key
response.reason, body)
S3ResponseError: S3ResponseError: 404 Not Found
<Error>
<Code>NoSuchBucket</Code>
<Message>The specified bucket does not exist</Message>
<BucketName><Bucket: the-test-bucket></BucketName>
<RequestId>ABCDEFG12345</RequestId>
<HostId>HTLIxTQI87qC56FG2c0y570E+Y2L56e7806OJhAXk2x5i7uzfd4XU/nhmjHVpLqz9</HostId>
</Error>
答案 0 :(得分:3)
您的代码中存在一些问题。
在bucket name
个参数中使用bucket object
,而不是copy-key
。并且您切换了源和目标键顺序。
copy_key(new_key_name, src_bucket_name, src_key_name)
bucket.copy_key('location2/item','the-bucket-name','location1/item')
应该有用。