e
This commit is contained in:
parent
bfaf613dfa
commit
00000d9769
11 changed files with 662 additions and 590 deletions
|
|
@ -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 = []
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue