This commit is contained in:
doms9 2025-12-05 17:29:19 -05:00
parent 16f38d8eb4
commit 00000d9afd
4 changed files with 186 additions and 0 deletions

View file

@ -17,6 +17,7 @@ from scrapers import (
strmd,
tvpass,
watchfooty,
webcast,
)
from scrapers.utils import get_logger, network
@ -58,6 +59,7 @@ async def main() -> None:
asyncio.create_task(strmd.scrape(network.client)),
asyncio.create_task(tvpass.scrape(network.client)),
asyncio.create_task(watchfooty.scrape(network.client)),
asyncio.create_task(webcast.scrape(network.client)),
]
await asyncio.gather(*tasks)
@ -76,6 +78,7 @@ async def main() -> None:
| streamfree.urls
| tvpass.urls
| watchfooty.urls
| webcast.urls
)
live_events: list[str] = []