This commit is contained in:
doms9 2025-10-11 18:43:57 -04:00
parent 703c55bee4
commit 00000d9199
5 changed files with 328 additions and 30 deletions

View file

@ -2,7 +2,7 @@
import asyncio
from pathlib import Path
from scrapers import fstv, livetvsx, streambtw, streamed, strmd, tvpass
from scrapers import fstv, livetvsx, streambtw, streamed, strmd, tvpass, watchfooty
from scrapers.utils import get_logger, network
log = get_logger(__name__)
@ -32,6 +32,7 @@ async def main() -> None:
asyncio.create_task(streamed.scrape(network.client)),
asyncio.create_task(strmd.scrape(network.client)),
asyncio.create_task(tvpass.scrape(network.client)),
asyncio.create_task(watchfooty.scrape(network.client)),
]
await asyncio.gather(*tasks)
@ -43,6 +44,7 @@ async def main() -> None:
| streamed.urls
| strmd.urls
| tvpass.urls
| watchfooty.urls
)
live_events = []