EnkaNetwork.py/example/constellations.py
xSTACIA fc4c09ae0b renamed __pydantic_self__ to self
remove PyPEP8 E501
example `asyncio.loop` to `asyncio.run`

examples: pass all
2022-08-17 11:54:16 +07:00

19 lines
619 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.url}")
print(f"Unlocked: {constellation.unlocked}")
print("="*18)
asyncio.run(main())