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 5cd8221 commit 290664cCopy full SHA for 290664c
scrapinghub/client/proxy.py
@@ -52,8 +52,14 @@ def _modify_iter_params(self, params):
52
53
class _ItemsResourceProxy(_Proxy):
54
55
- def get(self, _key, **params):
56
- return self._origin.get(_key, **params)
+ def get(self, key, **params):
+ """Get element from collection.
57
+
58
+ :param key: element key.
59
+ :return: a dictionary with element data.
60
+ :rtype: :class:`dict`
61
+ """
62
+ return self._origin.get(key, **params)
63
64
def write(self, item):
65
"""Write new element to collection."""
0 commit comments