This commit is contained in:
doms9 2025-08-30 14:29:49 -04:00
parent 00000d9f06
commit 00000d91d0
5 changed files with 629 additions and 1095 deletions

View file

@ -3,7 +3,7 @@ import asyncio
from pathlib import Path
import httpx
from scrape import fstv, tvpass
from scrape import tvpass # , fstv
base_url = "https://s.id/ePwXT"
@ -37,11 +37,11 @@ async def vanilla_fetch() -> tuple[list[str], int]:
async def main() -> None:
await tvpass.main(client)
await fstv.main(client)
# await fstv.main(client)
base_m3u8, chnl_number = await vanilla_fetch()
additions = tvpass.urls | fstv.urls
additions = tvpass.urls # | fstv.urls
lines = [
f'#EXTINF:-1 tvg-chno="{chnl_number}" tvg-id="(N/A)" tvg-name="{event}" tvg-logo="{info["logo"]}" group-title="Live Events",{event}\n{info["url"]}'