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

@ -15,6 +15,8 @@ CACHE_FILE = Cache("fawa.json", exp=10_800)
BASE_URL = "http://www.fawanews.sc/"
TAG = "FAWA"
async def process_event(
client: httpx.AsyncClient,
@ -130,7 +132,7 @@ async def scrape(client: httpx.AsyncClient) -> None:
if url:
sport, event = ev["sport"], ev["event"]
key = f"[{sport}] {event} (FAWA)"
key = f"[{sport}] {event} ({TAG})"
tvg_id, logo = leagues.get_tvg_info(sport, event)