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

Method fetch

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

Source from the content-addressed store, hash-verified

547
548 def list(self) -> AutoPager[WebhookView]:
549 async def fetch(_cursor: Optional[str]) -> Page:
550 resp = await self._c._read(lambda h: self._api.list_webhooks(_headers=h))
551 # No cursor param: drop next_cursor so the pager stops after one page.
552 # (Single-page at GA — see webhooks.deliveries.)
553 return _page(resp.items)
554
555 return AutoPager(fetch)
556

Callers

nothing calls this directly

Calls 4

_pageFunction · 0.85
_readMethod · 0.80
list_webhooksMethod · 0.80

Tested by

no test coverage detected