update M3U8

This commit is contained in:
GitHub Actions Bot 2026-03-18 13:36:34 -04:00
parent db015d6ff8
commit 84aa62328d
4 changed files with 883 additions and 451 deletions

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -70,7 +70,7 @@ async def main() -> None:
asyncio.create_task(sportzone.scrape(xtrnl_brwsr)),
asyncio.create_task(streamcenter.scrape(hdl_brwsr)),
asyncio.create_task(streamhub.scrape(xtrnl_brwsr)),
asyncio.create_task(streamsgate.scrape(xtrnl_brwsr)),
# asyncio.create_task(streamsgate.scrape(xtrnl_brwsr)),
asyncio.create_task(timstreams.scrape(xtrnl_brwsr)),
]
@ -85,7 +85,7 @@ async def main() -> None:
asyncio.create_task(totalsportek1.scrape()),
asyncio.create_task(totalsportek3.scrape()),
asyncio.create_task(tvapp.scrape()),
asyncio.create_task(volokit.scrape()),
# asyncio.create_task(volokit.scrape()),
asyncio.create_task(webcast.scrape()),
]

View file

@ -56,7 +56,7 @@ async def get_events(cached_keys: list[str]) -> list[dict[str, str]]:
sport = "Live Event"
for card in soup.css(".stream-row"):
for card in soup.css(".main-content .stream-row"):
if (not (watch_btn_elem := card.css_first(".watch-btn"))) or (
not (onclick := watch_btn_elem.attributes.get("onclick"))
):