The Chinese information of some new characters is unavailable.
Opened this issue · 2 comments
miraclejzd commented
Jelosus2 commented
- Make sure you have the package updated to the latest version
- 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
mrwan2546 commented
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())