This commit is contained in:
doms9 2025-12-01 14:46:31 -05:00
parent 8094466d7d
commit 00000d99d8
15 changed files with 402 additions and 30 deletions

View file

@ -16,6 +16,8 @@ CACHE_FILE = Cache("sport9.json", exp=3_600)
BASE_URL = "https://sport9.ru"
TAG = "SPRT9"
async def get_html(
client: httpx.AsyncClient,
@ -86,7 +88,7 @@ async def get_events(
if not (href := card.attributes.get("href")):
continue
key = f"[{sport}] {event} (SPRT9)"
key = f"[{sport}] {event} ({TAG})"
if cached_keys & {key}:
continue
@ -139,7 +141,7 @@ async def scrape(client: httpx.AsyncClient) -> None:
if url:
sport, event = ev["sport"], ev["event"]
key = f"[{sport}] {event} (SPRT9)"
key = f"[{sport}] {event} ({TAG})"
tvg_id, logo = leagues.get_tvg_info(sport, event)