MCPcopy Create free account
hub / github.com/Mnexa-AI/e2a / fetch

Method fetch

sdks/python/src/e2a/v1/client.py:459–463  ·  view source on GitHub ↗
(_cursor: Optional[str])

Source from the content-addressed store, hash-verified

457
458 def list(self) -> AutoPager[DomainView]:
459 async def fetch(_cursor: Optional[str]) -> Page:
460 resp = await self._c._read(lambda h: self._api.list_domains(_headers=h))
461 # No cursor param: drop next_cursor so the pager stops after one page.
462 # (Single-page at GA — see webhooks.deliveries.)
463 return _page(resp.items)
464
465 return AutoPager(fetch)
466

Callers

nothing calls this directly

Calls 3

_pageFunction · 0.85
_readMethod · 0.80
list_domainsMethod · 0.80

Tested by

no test coverage detected