mirror of
https://github.com/PaiGramTeam/EnkaNetwork.py.git
synced 2024-11-16 11:52:18 +00:00
fc4c09ae0b
remove PyPEP8 E501 example `asyncio.loop` to `asyncio.run` examples: pass all
29 lines
1.2 KiB
Python
29 lines
1.2 KiB
Python
import asyncio
|
|
|
|
from enkanetwork import EnkaNetworkAPI
|
|
from enkanetwork.enum import DigitType
|
|
|
|
client = EnkaNetworkAPI(lang="th")
|
|
|
|
async def main():
|
|
async with client:
|
|
data = await client.fetch_user(843715177)
|
|
for character in data.characters:
|
|
print(f"=== Weapon of {character.name} ===")
|
|
weapon = character.equipments[-1]
|
|
print(f"ID: {weapon.id}")
|
|
print(f"Name: {weapon.detail.name}")
|
|
print(f"Icon: {weapon.detail.icon.url}")
|
|
print(f"Level: {weapon.level}")
|
|
print(f"Refinement: R{weapon.refinement}")
|
|
print(f"Ascension: {'⭐'*weapon.ascension}")
|
|
print("--- Main Stats ---")
|
|
print(f"Name: {weapon.detail.mainstats.name}")
|
|
print(f"Value: {weapon.detail.mainstats.value}{'%' if weapon.detail.mainstats.type == DigitType.PERCENT else ''}")
|
|
print("--- Sub Stats ---")
|
|
for substate in weapon.detail.substats:
|
|
print(f"Name: {substate.name}")
|
|
print(f"Value: {substate.value}{'%' if substate.type == DigitType.PERCENT else ''}")
|
|
print("-"*18)
|
|
|
|
asyncio.run(main()) |