update M3U8
This commit is contained in:
parent
83d4bc0370
commit
13e96d7f8f
5 changed files with 349 additions and 149 deletions
|
|
@ -2,7 +2,16 @@
|
|||
import asyncio
|
||||
from pathlib import Path
|
||||
|
||||
from scrapers import ppv, streambtw, streameast, streamed, strmd, tvpass, watchfooty
|
||||
from scrapers import (
|
||||
fstv,
|
||||
ppv,
|
||||
streambtw,
|
||||
streameast,
|
||||
streamed,
|
||||
strmd,
|
||||
tvpass,
|
||||
watchfooty,
|
||||
)
|
||||
from scrapers.utils import get_logger, network
|
||||
|
||||
log = get_logger(__name__)
|
||||
|
|
@ -28,6 +37,7 @@ async def main() -> None:
|
|||
base_m3u8, tvg_chno = load_base()
|
||||
|
||||
tasks = [
|
||||
asyncio.create_task(fstv.scrape(network.client)),
|
||||
asyncio.create_task(ppv.scrape(network.client)),
|
||||
asyncio.create_task(streambtw.scrape(network.client)),
|
||||
asyncio.create_task(streameast.scrape(network.client)),
|
||||
|
|
@ -40,7 +50,8 @@ async def main() -> None:
|
|||
await asyncio.gather(*tasks)
|
||||
|
||||
additions = (
|
||||
ppv.urls
|
||||
fstv.urls
|
||||
| ppv.urls
|
||||
| streambtw.urls
|
||||
| streameast.urls
|
||||
| streamed.urls
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue