我试图运行一个看起来很简单的脚本,但是我仍然得到一个错误。如果有人能指出我错过了什么,我将非常感激。
请注意,我知道我不应该直接将键放在脚本中,而且我知道它不是最好的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>&lt;Bucket: the-test-bucket&gt;</BucketName>
            <RequestId>ABCDEFG12345</RequestId>
            <HostId>HTLIxTQI87qC56FG2c0y570E+Y2L56e7806OJhAXk2x5i7uzfd4XU/nhmjHVpLqz9</HostId>
        </Error>

最佳答案

代码中很少有问题。
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')

应该工作。

09-10 02:34