mirror of
https://github.com/PaiGramTeam/HonkaiStarRailWikiDataParser.git
synced 2025-01-30 10:28:39 +00:00
feat: mihomo map
This commit is contained in:
parent
f6632c868c
commit
826395ea52
41
func/fetch_mihomo_map.py
Normal file
41
func/fetch_mihomo_map.py
Normal file
@ -0,0 +1,41 @@
|
||||
import asyncio
|
||||
from pathlib import Path
|
||||
|
||||
import aiofiles
|
||||
|
||||
from func.client import client, retry
|
||||
from func.url import mihomo_map_url
|
||||
|
||||
data_dir = Path("data") / "mihomo_map"
|
||||
data_dir.mkdir(exist_ok=True, parents=True)
|
||||
file_set = {
|
||||
"characters.json",
|
||||
"character_ranks.json",
|
||||
"character_skills.json",
|
||||
"character_skill_trees.json",
|
||||
"character_promotions.json",
|
||||
"light_cones.json",
|
||||
"light_cone_ranks.json",
|
||||
"light_cone_promotions.json",
|
||||
"relics.json",
|
||||
"relic_sets.json",
|
||||
"relic_main_affixes.json",
|
||||
"relic_sub_affixes.json",
|
||||
"paths.json",
|
||||
"elements.json",
|
||||
"properties.json",
|
||||
"avatars.json",
|
||||
}
|
||||
|
||||
|
||||
@retry
|
||||
async def fetch_file(filename: str) -> None:
|
||||
req = await client.get(mihomo_map_url + filename)
|
||||
async with aiofiles.open(data_dir / filename, "wb") as f:
|
||||
await f.write(req.content)
|
||||
|
||||
|
||||
async def fetch_files():
|
||||
print("获取 mihomo map 文件")
|
||||
tasks = [fetch_file(file) for file in file_set]
|
||||
await asyncio.gather(*tasks)
|
@ -1,2 +1,4 @@
|
||||
base_url = "https://api-static.mihoyo.com/common/blackboard/sr_wiki/v1"
|
||||
list_url = f"{base_url}/home/content/list"
|
||||
|
||||
mihomo_map_url = "https://raw.githubusercontent.com/Mar-7th/StarRailRes/master/index_min/cn/"
|
||||
|
2
main.py
2
main.py
@ -6,6 +6,7 @@ from func.fetch_light_cones import fetch_light_cones
|
||||
from func.fetch_materials import fetch_materials
|
||||
from func.fetch_relics import fetch_relics
|
||||
from func.fetch_src import move_files
|
||||
from func.fetch_mihomo_map import fetch_files
|
||||
|
||||
|
||||
async def wiki():
|
||||
@ -23,6 +24,7 @@ async def bbs_photos():
|
||||
async def main():
|
||||
await wiki()
|
||||
await bbs_photos()
|
||||
await fetch_files()
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
Loading…
Reference in New Issue
Block a user