Boto Amazon S3 - 获取存储桶作为迭代器

时间:2015-05-19 14:38:01

标签: python-2.7 amazon-s3 boto

我在Amazon S3服务器上使用Python Boto库。

我想将bucket对象作为迭代器,所以当我写Bucket.next()之类的东西时,它会给我下一个迭代器。

我该怎么做?

1 个答案:

答案 0 :(得分:0)

使用get_all_buckets()

from boto.s3 import Connection
connection = Connection()
buckets = connection.get_all_buckets()  # returns a list of bucket objects

现在您可以迭代buckets