You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When working with the <code>limit</code> parameters (default value is **100**) you can request resources using the <code>item_iterator()</code> function.
71
47
The API returns data in pages. This function returns a [Generator](https://wiki.python.org/moin/Generators) which
72
48
traverses these pages for you and yields each result in the current page before retrieving the next page.
73
49
74
-
##Example usage:
50
+
##Feedback example
75
51
76
52
```python
77
53
>>>import usabilla as ub
78
54
>>>import json
79
-
>>> api = ub.APIClient('CLIENT-API-KEY', 'CLIENT-SECRET-KEY')
55
+
>>> api = ub.APIClient('YOUR-ACCESS-KEY', 'YOUR-SECRET-KEY')
0 commit comments