Modern API wrapper for Endfield built on asyncio and pydantic.
- Python 3.9+
- httpx
- Pydantic
A very simple example of how HyperNet would be used:
import asyncio
import hypernet
async def main():
cookies = {} # write your cookies
player_id = 123456789
async with hypernet.EndfieldClient(cookies, player_id=player_id) as client:
data = await client.get_endfield_accounts()
print(data)
asyncio.run(main())