-
Notifications
You must be signed in to change notification settings - Fork 11
Akasha
Deviant edited this page Dec 12, 2023
·
5 revisions
The Akasha class allows you return character stats, and update stats on the Akasha System website
Akash class takes only 1 argument:
UID
Get user character statistics
from enkacard import encbanner import asyncio async def card(): uid = "811455610" akasha = encbanner.Akasha(uid = uid) result = await akasha.get_stats(chart_id= 10000052) return result result = asyncio.run(card()) print(result)
Update statistics on Akasha System
from enkacard import encbanner import asyncio async def card(): uid = "811455610" akasha = encbanner.Akasha(uid = uid) await akasha.refresh(prints = True) result = asyncio.run(card()) print(result)
banner