EnkaNetwork.py/example/constellations.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

20 lines
659 B
Python

import asyncio
from enkanetwork import EnkaNetworkAPI
client = EnkaNetworkAPI(lang="th")
async def main():
async with client:
data = await client.fetch_user(843715177)
for character in data.characters:
print(f"=== Constellations of {character.name} ===")
for constellation in character.constellations:
print(f"ID: {constellation.id}")
print(f"Name: {constellation.name}")
print(f"Icon: {constellation.icon}")
print(f"Unlocked: {constellation.unlocked}")
print("="*18)
loop = asyncio.get_event_loop()
loop.run_until_complete(main())