Boto (Python)-反转的遗愿清单

发布于 2024-12-10 08:05:48 字数 137 浏览 1 评论 0原文

有谁知道如何获得反向遗愿清单。

bucketList = self.bucket.list(PREFIX)
bucketList.reverse()

不起作用。

谢谢, 罗恩.

Does anyone know how to get reversed bucket list.

bucketList = self.bucket.list(PREFIX)
bucketList.reverse()

does not work.

Thanks,
Ron.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

ゝ杯具 2024-12-17 08:05:48

无法执行bucket.list() 的相反操作的原因是该方法实际上返回一个生成器而不是实际的列表。这更加高效,并且还允许 boto 在幕后处理所有结果分页。

如果你真的想反转它,你可以收集列表中的所有元素,然后反转它:

objs = [obj for obj in self.bucket.list(PREFIX)]
objs.reverse()

但如果桶中有很多对象,这将非常低效。

The reason that you can't do a reverse of bucket.list() is because that method actually returns a generator rather than the actual list. This is much more efficient and also allows boto to handle all of the paging of results behind the scenes.

If you really want to reverse it you could collect all of the elements in a list and then reverse that:

objs = [obj for obj in self.bucket.list(PREFIX)]
objs.reverse()

but if there are a lot of objects in the bucket this will be very inefficient.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文