update M3U8

This commit is contained in:
GitHub Actions Bot 2026-02-02 13:18:31 -05:00
parent a81e0b8d3e
commit 78697034a9
3 changed files with 566 additions and 276 deletions

View file

@ -64,7 +64,6 @@ async def main() -> None:
pw_tasks = [
asyncio.create_task(cdnlivetv.scrape(hdl_brwsr)),
asyncio.create_task(embedhd.scrape(hdl_brwsr)),
asyncio.create_task(livetvsx.scrape(hdl_brwsr)),
asyncio.create_task(pixel.scrape(hdl_brwsr)),
asyncio.create_task(ppv.scrape(xtrnl_brwsr)),
asyncio.create_task(roxie.scrape(hdl_brwsr)),
@ -72,15 +71,14 @@ async def main() -> None:
asyncio.create_task(streamcenter.scrape(xtrnl_brwsr)),
# asyncio.create_task(streamhub.scrape(xtrnl_brwsr)),
asyncio.create_task(streamsgate.scrape(xtrnl_brwsr)),
asyncio.create_task(totalsportek.scrape(hdl_brwsr)),
# asyncio.create_task(totalsportek.scrape(hdl_brwsr)),
asyncio.create_task(webcast.scrape(hdl_brwsr)),
asyncio.create_task(watchfooty.scrape(xtrnl_brwsr)),
]
httpx_tasks = [
asyncio.create_task(fawa.scrape()),
asyncio.create_task(istreameast.scrape()),
# asyncio.create_task(pawa.scrape()),
asyncio.create_task(pawa.scrape()),
asyncio.create_task(shark.scrape()),
# asyncio.create_task(streambtw.scrape()),
asyncio.create_task(streamfree.scrape()),
@ -90,6 +88,10 @@ async def main() -> None:
await asyncio.gather(*(pw_tasks + httpx_tasks))
# others
await watchfooty.scrape(xtrnl_brwsr)
await livetvsx.scrape(hdl_brwsr)
finally:
await hdl_brwsr.close()