import time from typing import List, Dict import httpx __all__ = ("AbyssTeam",) class AbyssTeam: TEAM_RATE_API = "https://homa.snapgenshin.com/Statistics/Team/Combination" HEADERS = { "Host": "homa.snapgenshin.com", "Referer": "https://servicewechat.com/wxce4dbe0cb0f764b3/91/page-frame.html", "User-Agent": "Mozilla/5.0 (iPad; CPU OS 15_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) " "Mobile/15E148 MicroMessenger/8.0.20(0x1800142f) NetType/WIFI Language/zh_CN", "content-type": "application/json", } # This should not be there VERSION = "3.5" def __init__(self): self.client = httpx.AsyncClient(headers=self.HEADERS) self.time = 0 self.data = None self.ttl = 10 * 60 async def get_data(self) -> List[Dict[str, Dict]]: if self.data is None or self.time + self.ttl < time.time(): data = await self.client.get(self.TEAM_RATE_API) data_json = data.json()["data"] self.data = data_json self.time = time.time() return self.data.copy() async def close(self): await self.client.aclose()