mirror of
https://github.com/PaiGramTeam/EnkaNetwork.py.git
synced 2024-11-16 11:52:18 +00:00
12 lines
270 B
Python
12 lines
270 B
Python
import asyncio
|
|
|
|
from enkanetwork import EnkaNetworkAPI
|
|
|
|
client = EnkaNetworkAPI(debug=True)
|
|
|
|
async def main():
|
|
await client.update_assets()
|
|
# You can see the progress download new assets in console
|
|
|
|
loop = asyncio.get_event_loop()
|
|
loop.run_until_complete(main()) |