Skip to content

Commit

Permalink
feat: mihomo map
Browse files Browse the repository at this point in the history
  • Loading branch information
omg-xtao committed Dec 19, 2024
1 parent f6632c8 commit 826395e
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 0 deletions.
41 changes: 41 additions & 0 deletions func/fetch_mihomo_map.py
Original file line number Diff line number Diff line change
@@ -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)
2 changes: 2 additions & 0 deletions func/url.py
Original file line number Diff line number Diff line change
@@ -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 changes: 2 additions & 0 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
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():
Expand All @@ -23,6 +24,7 @@ async def bbs_photos():
async def main():
await wiki()
await bbs_photos()
await fetch_files()


if __name__ == "__main__":
Expand Down

0 comments on commit 826395e

Please sign in to comment.