@@ -162,13 +162,14 @@ def list_keys(
162162 https://docs.apify.com/api/v2#/reference/key-value-stores/key-collection/get-list-of-keys
163163
164164 Args:
165- limit: Number of keys to be returned. Maximum value is 1000.
165+ limit: Total number of keys to yield across all pages when iterating. The API caps each
166+ individual request at 1000 keys; use `chunk_size` to control the per-request size.
166167 exclusive_start_key: All keys up to this one (including) are skipped from the result.
167168 collection: The name of the collection in store schema to list keys from.
168169 prefix: The prefix of the keys to be listed.
169170 signature: Signature used to access the items.
170- chunk_size: Maximum number of keys requested per API call when iterating. Only relevant
171- when iterating across pages.
171+ chunk_size: Maximum number of keys requested per API call when iterating. Capped at
172+ 1000 by the API. Only relevant when iterating across pages.
172173 timeout: Timeout for the API HTTP request.
173174
174175 Returns:
@@ -218,13 +219,14 @@ def iterate_keys(
218219 https://docs.apify.com/api/v2#/reference/key-value-stores/key-collection/get-list-of-keys
219220
220221 Args:
221- limit: Number of keys to be returned. Maximum value is 1000.
222+ limit: Total number of keys to yield across all pages. The API caps each individual
223+ request at 1000 keys; use `chunk_size` to control the per-request size.
222224 exclusive_start_key: All keys up to this one (including) are skipped from the result.
223225 collection: The name of the collection in store schema to list keys from.
224226 prefix: The prefix of the keys to be listed.
225227 signature: Signature used to access the items.
226- chunk_size: Maximum number of keys requested per API call when iterating. Only relevant
227- when iterating across pages.
228+ chunk_size: Maximum number of keys requested per API call when iterating. Capped at
229+ 1000 by the API. Only relevant when iterating across pages.
228230 timeout: Timeout for the API HTTP request.
229231
230232 Yields:
@@ -476,7 +478,7 @@ def create_keys_public_url(
476478 Any other options (like `limit` or `prefix`) will be included as query parameters in the URL.
477479
478480 Args:
479- limit: Number of keys to be returned. Maximum value is 1000.
481+ limit: Number of keys to be returned by the signed request . Maximum value is 1000.
480482 exclusive_start_key: All keys up to this one (including) are skipped from the result.
481483 collection: The name of the collection in store schema to list keys from.
482484 prefix: The prefix of the keys to be listed.
@@ -600,13 +602,14 @@ def list_keys(
600602 https://docs.apify.com/api/v2#/reference/key-value-stores/key-collection/get-list-of-keys
601603
602604 Args:
603- limit: Number of keys to be returned. Maximum value is 1000.
605+ limit: Total number of keys to yield across all pages when iterating. The API caps each
606+ individual request at 1000 keys; use `chunk_size` to control the per-request size.
604607 exclusive_start_key: All keys up to this one (including) are skipped from the result.
605608 collection: The name of the collection in store schema to list keys from.
606609 prefix: The prefix of the keys to be listed.
607610 signature: Signature used to access the items.
608- chunk_size: Maximum number of keys requested per API call when iterating. Only relevant
609- when iterating across pages.
611+ chunk_size: Maximum number of keys requested per API call when iterating. Capped at
612+ 1000 by the API. Only relevant when iterating across pages.
610613 timeout: Timeout for the API HTTP request.
611614
612615 Returns:
@@ -656,13 +659,14 @@ async def iterate_keys(
656659 https://docs.apify.com/api/v2#/reference/key-value-stores/key-collection/get-list-of-keys
657660
658661 Args:
659- limit: Number of keys to be returned. Maximum value is 1000.
662+ limit: Total number of keys to yield across all pages. The API caps each individual
663+ request at 1000 keys; use `chunk_size` to control the per-request size.
660664 exclusive_start_key: All keys up to this one (including) are skipped from the result.
661665 collection: The name of the collection in store schema to list keys from.
662666 prefix: The prefix of the keys to be listed.
663667 signature: Signature used to access the items.
664- chunk_size: Maximum number of keys requested per API call when iterating. Only relevant
665- when iterating across pages.
668+ chunk_size: Maximum number of keys requested per API call when iterating. Capped at
669+ 1000 by the API. Only relevant when iterating across pages.
666670 timeout: Timeout for the API HTTP request.
667671
668672 Yields:
@@ -917,7 +921,7 @@ async def create_keys_public_url(
917921 Any other options (like `limit` or `prefix`) will be included as query parameters in the URL.
918922
919923 Args:
920- limit: Number of keys to be returned. Maximum value is 1000.
924+ limit: Number of keys to be returned by the signed request . Maximum value is 1000.
921925 exclusive_start_key: All keys up to this one (including) are skipped from the result.
922926 collection: The name of the collection in store schema to list keys from.
923927 prefix: The prefix of the keys to be listed.
0 commit comments