We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef93b7d commit da7fd5dCopy full SHA for da7fd5d
scrapinghub/client/collections.py
@@ -133,8 +133,9 @@ class Collection(object):
133
134
- get 1000th item key::
135
136
- >>> keys = foo_store.list(nodata=True, meta=["_key"]))
137
- >>> keys[1000]
+ >>> import itertools
+ >>> keys = foo_store.iter(nodata=True, meta=["_key"]))
138
+ >>> next(itertools.islice(keys, 1000, 1001))
139
{'_key': '002d050ee3ff6192dcbecc4e4b4457d7'}
140
141
- filter by multiple keys, only values for keys that exist will be returned::
0 commit comments