MibooGram/modules/apihelper/client/components/abyss.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
1.0 KiB
Python
Raw Normal View History

2022-12-10 12:37:43 +00:00
import time
from typing import List, Dict
2022-12-10 12:37:43 +00:00
import httpx
__all__ = ("AbyssTeam",)
class AbyssTeam:
TEAM_RATE_API = "https://homa.snapgenshin.com/Statistics/Team/Combination"
2022-12-10 12:37:43 +00:00
HEADERS = {
"Host": "homa.snapgenshin.com",
2023-10-20 04:23:02 +00:00
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) "
"Chrome/118.0.0.0 Safari/537.36 PaiGram/4.0",
2022-12-10 12:37:43 +00:00
"content-type": "application/json",
}
# This should not be there
2023-03-07 13:29:24 +00:00
VERSION = "3.5"
2022-12-10 12:37:43 +00:00
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]]:
2022-12-10 12:37:43 +00:00
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
2022-12-10 12:37:43 +00:00
self.time = time.time()
return self.data.copy()
2022-12-10 12:37:43 +00:00
async def close(self):
await self.client.aclose()