mrwan2546/EnkaNetwork.py

The Chinese information of some new characters is unavailable.

Opened this issue · 2 comments

Just as the title sad.

When I used enkanetwork.py to get the information of 迪西雅,it catched some errors.

image

Was that my mistake?

  1. Make sure you have the package updated to the latest version
  2. Try to update the assets, example:
from enkanetwork import EnkaNetworkAPI

client = EnkaNetworkAPI(debug=True)
async with client:
  await client.update_assets()
  # You can see the progress download new assets in console

Please check if you update assets library is latest. or try update by example code this

import asyncio

from enkanetwork import EnkaNetworkAPI

client = EnkaNetworkAPI(debug=True)

async def main():
    async with client:
        await client.update_assets()
        # You can see the progress download new assets in console

asyncio.run(main())