EnkaNetwork.py/example/debug.py
Dee Dev 3ec03d9b06 Upgrade EnkaNetwork.py
- add http client
- update example

- add aenter, aexit for auto close client
2022-08-04 20:56:23 +07:00

13 lines
300 B
Python

import asyncio
from enkanetwork import EnkaNetworkAPI
client = EnkaNetworkAPI(lang="th", debug=True)
async def main():
async with client:
await client.fetch_user(843715177)
# You can see the debug log in console.
loop = asyncio.get_event_loop()
loop.run_until_complete(main())