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
{{ message }}
This repository was archived by the owner on Jun 24, 2022. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -56,6 +56,14 @@ If you'd like more control over pagination, or to limit the number of resources
56
56
print students.next()
57
57
```
58
58
59
+
You may also use the `starting_after` or `ending_before` parameters with the `iter` method:
60
+
61
+
```python
62
+
students = clever.Student.iter(starting_after="530e5960049e75a9262cff1d")
63
+
for s in students:
64
+
print students.next()
65
+
```
66
+
59
67
The `retrieve` class method takes in a Clever ID and returns a specific resource. The object (or list of objects in the case of `all`) supports accessing properties using either dot notation or dictionary notation:
0 commit comments