AsyncPage (same shape with async methods).
Page
Generic[T]
A single page of results from a Modus list endpoint (sync).
Iterating yields the current page only. Use auto_paging_iter() to walk every page, or get_next_page() to advance manually.
For async clients, see AsyncPage.
has_next_page()
get_next_page()
auto_paging_iter()
AsyncPage
Generic[T]
A single page of results from a Modus list endpoint (async).
has_next_page()
get_next_page()
auto_paging_iter()
-
Usage:
- async for item in page.auto_paging_iter(): process(item)