<legend id='VwXio'><style id='VwXio'><dir id='VwXio'><q id='VwXio'></q></dir></style></legend>
  • <tfoot id='VwXio'></tfoot>
    <i id='VwXio'><tr id='VwXio'><dt id='VwXio'><q id='VwXio'><span id='VwXio'><b id='VwXio'><form id='VwXio'><ins id='VwXio'></ins><ul id='VwXio'></ul><sub id='VwXio'></sub></form><legend id='VwXio'></legend><bdo id='VwXio'><pre id='VwXio'><center id='VwXio'></center></pre></bdo></b><th id='VwXio'></th></span></q></dt></tr></i><div id='VwXio'><tfoot id='VwXio'></tfoot><dl id='VwXio'><fieldset id='VwXio'></fieldset></dl></div>
        <bdo id='VwXio'></bdo><ul id='VwXio'></ul>

      <small id='VwXio'></small><noframes id='VwXio'>

      1. 如何使用 boto 遍历 DynamoDB 表中的所有项目?

        时间:2023-07-05

          <tbody id='CPaca'></tbody>

            <small id='CPaca'></small><noframes id='CPaca'>

            <tfoot id='CPaca'></tfoot>

          • <legend id='CPaca'><style id='CPaca'><dir id='CPaca'><q id='CPaca'></q></dir></style></legend>

              <i id='CPaca'><tr id='CPaca'><dt id='CPaca'><q id='CPaca'><span id='CPaca'><b id='CPaca'><form id='CPaca'><ins id='CPaca'></ins><ul id='CPaca'></ul><sub id='CPaca'></sub></form><legend id='CPaca'></legend><bdo id='CPaca'><pre id='CPaca'><center id='CPaca'></center></pre></bdo></b><th id='CPaca'></th></span></q></dt></tr></i><div id='CPaca'><tfoot id='CPaca'></tfoot><dl id='CPaca'><fieldset id='CPaca'></fieldset></dl></div>
                <bdo id='CPaca'></bdo><ul id='CPaca'></ul>

                  本文介绍了如何使用 boto 遍历 DynamoDB 表中的所有项目?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我想查询 DynamoDB 表并检索所有项目并使用 boto 遍历它们.如何构建返回表中所有内容的查询或扫描?

                  I'd like to query a DynamoDB table and retrieve all the items and loop over them using boto. How do I structure a query or scan that returns everything in the table?

                  推荐答案

                  初步支持 Scan API 已由 Chris Moyer 在 commit 522e0548(添加了对 layer2 和 Table 的扫描),同时由 Mitch Garnaat 在 commit adeb7151(清理 Layer2 和 Table 上的扫描方法.)隐藏 layer1 的详细信息并启用直观的查询 - 相应的 issue #574 目前计划与 boto 2.3.

                  Preliminary support for the Scan API had been added to boto's layer2 for DynamoDB by Chris Moyer in commit 522e0548 (Added scan to layer2 and Table) and has meanwhile been updated by Mitch Garnaat in commit adeb7151 (Cleaned up the scan method on Layer2 and Table.) to hide the layer1 details and enable intuitive querying - the respective issue #574 is currently scheduled to be released with boto 2.3.

                  使用示例通过 tests/dynamodb/test_layer2.py:

                  # Try scans
                  results = table.scan([('Tags', 'CONTAINS', 'table')])
                  n = 0
                  for item in results:
                      n += 1
                  assert n == 2
                  

                  这篇关于如何使用 boto 遍历 DynamoDB 表中的所有项目?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:在 DynamoDB 中使用带有保留字的 ProjectionExpression 和 Boto3 下一篇:Python - 使用 Boto3 从 DynamoDB 检索最大主键值

                  相关文章

                    1. <legend id='oreEg'><style id='oreEg'><dir id='oreEg'><q id='oreEg'></q></dir></style></legend>

                      <small id='oreEg'></small><noframes id='oreEg'>

                        <bdo id='oreEg'></bdo><ul id='oreEg'></ul>
                    2. <tfoot id='oreEg'></tfoot>
                      <i id='oreEg'><tr id='oreEg'><dt id='oreEg'><q id='oreEg'><span id='oreEg'><b id='oreEg'><form id='oreEg'><ins id='oreEg'></ins><ul id='oreEg'></ul><sub id='oreEg'></sub></form><legend id='oreEg'></legend><bdo id='oreEg'><pre id='oreEg'><center id='oreEg'></center></pre></bdo></b><th id='oreEg'></th></span></q></dt></tr></i><div id='oreEg'><tfoot id='oreEg'></tfoot><dl id='oreEg'><fieldset id='oreEg'></fieldset></dl></div>