update M3U8
This commit is contained in:
parent
6ed5428980
commit
ed21eeea5b
3 changed files with 134 additions and 165 deletions
|
|
@ -2,7 +2,16 @@
|
|||
import asyncio
|
||||
from pathlib import Path
|
||||
|
||||
from scrapers import fstv, livetvsx, streambtw, streamed, strmd, tvpass, watchfooty
|
||||
from scrapers import (
|
||||
fstv,
|
||||
livetvsx,
|
||||
streambtw,
|
||||
streameast,
|
||||
streamed,
|
||||
strmd,
|
||||
tvpass,
|
||||
watchfooty,
|
||||
)
|
||||
from scrapers.utils import get_logger, network
|
||||
|
||||
log = get_logger(__name__)
|
||||
|
|
@ -29,6 +38,7 @@ async def main() -> None:
|
|||
asyncio.create_task(fstv.scrape(network.client)),
|
||||
# asyncio.create_task(livetvsx.scrape(network.client)),
|
||||
asyncio.create_task(streambtw.scrape(network.client)),
|
||||
asyncio.create_task(streameast.scrape(network.client)),
|
||||
asyncio.create_task(streamed.scrape(network.client)),
|
||||
asyncio.create_task(strmd.scrape(network.client)),
|
||||
asyncio.create_task(tvpass.scrape(network.client)),
|
||||
|
|
@ -41,6 +51,7 @@ async def main() -> None:
|
|||
fstv.urls
|
||||
| livetvsx.urls
|
||||
| streambtw.urls
|
||||
| streameast.urls
|
||||
| streamed.urls
|
||||
| strmd.urls
|
||||
| tvpass.urls
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue