mirror of
https://github.com/PaiGramTeam/HonkaiStarRailWikiDataParser.git
synced 2024-11-16 06:25:25 +00:00
17 lines
415 B
Python
17 lines
415 B
Python
import asyncio
|
|
|
|
from res_func.avatar import fix_avatar_config, fetch_text_map
|
|
from res_func.light_cone import fix_light_cone_config
|
|
from res_func.relic import fetch_relic_config
|
|
|
|
|
|
async def main():
|
|
text_map_data = await fetch_text_map()
|
|
await fix_avatar_config(text_map_data)
|
|
await fix_light_cone_config()
|
|
await fetch_relic_config(text_map_data)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
asyncio.run(main())
|