This commit is contained in:
doms9 2025-09-17 19:35:28 -04:00
parent bfaf613dfa
commit 00000d9769
11 changed files with 662 additions and 590 deletions

View file

@ -3,7 +3,7 @@ import asyncio
from pathlib import Path
import httpx
from scrapers import fstv, livetvsx, ppv, streambtw, tvpass
from scrapers import fstv, livetvsx, ppv, streambtw, streameast, tvpass
from scrapers.utils import UA, get_logger
log = get_logger(__name__)
@ -40,6 +40,7 @@ async def main() -> None:
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 +49,14 @@ async def main() -> None:
base_m3u8, tvg_chno = results[-1]
additions = fstv.urls | livetvsx.urls | ppv.urls | streambtw.urls | tvpass.urls
additions = (
fstv.urls
| livetvsx.urls
| ppv.urls
| streambtw.urls
| streameast.urls
| tvpass.urls
)
live_events = []