update M3U8

This commit is contained in:
GitHub Actions Bot 2026-03-16 15:00:58 -04:00
parent 666ac9ed54
commit d3b4f1ee51
4 changed files with 2034 additions and 46 deletions

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -77,7 +77,7 @@ async def main() -> None:
asyncio.create_task(fawa.scrape()), asyncio.create_task(fawa.scrape()),
asyncio.create_task(istreameast.scrape()), asyncio.create_task(istreameast.scrape()),
asyncio.create_task(ovogoal.scrape()), asyncio.create_task(ovogoal.scrape()),
asyncio.create_task(pawa.scrape()), # asyncio.create_task(pawa.scrape()),
asyncio.create_task(shark.scrape()), asyncio.create_task(shark.scrape()),
asyncio.create_task(streambtw.scrape()), asyncio.create_task(streambtw.scrape()),
asyncio.create_task(totalsportek1.scrape()), asyncio.create_task(totalsportek1.scrape()),

View file

@ -162,11 +162,7 @@ async def get_events(cached_keys: list[str]) -> list[dict[str, str]]:
log.info("Refreshing HTML cache") log.info("Refreshing HTML cache")
tasks = [ tasks = [
refresh_html_cache( refresh_html_cache(url, now.timestamp()) for url in SPORT_URLS.values()
url,
now.timestamp(),
)
for url in SPORT_URLS.values()
] ]
results = await asyncio.gather(*tasks) results = await asyncio.gather(*tasks)