mirror of
https://github.com/PaiGramTeam/EnkaNetwork.py.git
synced 2024-11-16 03:45:28 +00:00
fc4c09ae0b
remove PyPEP8 E501 example `asyncio.loop` to `asyncio.run` examples: pass all
18 lines
539 B
Python
18 lines
539 B
Python
import asyncio
|
|
|
|
from enkanetwork import EnkaNetworkAPI
|
|
from enkanetwork.model.stats import Stats
|
|
|
|
client = EnkaNetworkAPI(lang="th")
|
|
|
|
async def main():
|
|
async with client:
|
|
data = await client.fetch_user(843715177)
|
|
|
|
for character in data.characters:
|
|
print(f"=== Stats of {character.name} ===")
|
|
for stat in character.stats:
|
|
print(f"- {stat[0]}: {stat[1].to_rounded() if isinstance(stat[1], Stats) else stat[1].to_percentage_symbol()}")
|
|
print("="*18)
|
|
|
|
asyncio.run(main()) |