This commit is contained in:
doms9 2025-09-17 17:42:35 -04:00
parent eb6d7f6a42
commit 00000d9d77
2 changed files with 15 additions and 3 deletions

View file

@ -3,7 +3,7 @@ import asyncio
from pathlib import Path
import httpx
from scrapers import fstv, ppv, streambtw, streameast, tvpass
from scrapers import fstv, livetvsx, ppv, streambtw, tvpass
from scrapers.utils import UA, get_logger
log = get_logger(__name__)
@ -37,9 +37,9 @@ async def vanilla_fetch() -> tuple[list[str], int]:
async def main() -> None:
tasks = [
asyncio.create_task(fstv.main(CLIENT)),
asyncio.create_task(livetvsx.main(CLIENT)),
asyncio.create_task(ppv.main(CLIENT)),
asyncio.create_task(streambtw.main(CLIENT)),
asyncio.create_task(streameast.main(CLIENT)),
asyncio.create_task(tvpass.main(CLIENT)),
vanilla_fetch(),
]
@ -48,7 +48,7 @@ async def main() -> None:
base_m3u8, tvg_chno = results[-1]
additions = fstv.urls | ppv.urls | streambtw.urls | streameast.urls | tvpass.urls
additions = fstv.urls | livetvsx.urls | ppv.urls | streambtw.urls | tvpass.urls
live_events = []