Skip to content

Modern API wrapper for endfield built on asyncio and pydantic.

License

Notifications You must be signed in to change notification settings

PaiGramTeam/HyperNet

Repository files navigation

Hyper Network

Modern API wrapper for Endfield built on asyncio and pydantic.

Requirements

  • Python 3.9+
  • httpx
  • Pydantic

Example

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())

Credits

About

Modern API wrapper for endfield built on asyncio and pydantic.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages