Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Mnexa-AI/e2a
/ Page
Class
Page
sdks/python/src/e2a/v1/pagination.py:30–33 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
28
29
@dataclass
30
class
Page(Generic[T]):
31
items: Sequence[T]
32
#: None / "" → no more pages.
33
next_cursor: Optional[str] = None
34
35
36
FetchPage = Callable[[Optional[str]], Awaitable[
"Page[T]"
]]
Callers
4
test_v1_pagination.py
File · 0.90
test_empty_string_cursor_terminates
Function · 0.90
fetch
Function · 0.90
_page
Function · 0.70
Calls
no outgoing calls
Tested by
2
test_empty_string_cursor_terminates
Function · 0.72
fetch
Function · 0.72