Skip to content
Deviant edited this page Dec 12, 2023 · 5 revisions

Description:

The Akasha class allows you return character stats, and update stats on the Akasha System website


How to use:

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

Clone this wiki locally