This commit is contained in:
doms9 2025-11-14 19:27:54 -05:00
parent 3cad8619e7
commit 00000d9842
3 changed files with 285 additions and 2 deletions

View file

@ -14,6 +14,7 @@ from scrapers import (
streamfree,
strmd,
tvpass,
volo,
watchfooty,
)
from scrapers.utils import get_logger, network
@ -53,6 +54,7 @@ async def main() -> None:
asyncio.create_task(streamfree.scrape(network.client)),
asyncio.create_task(strmd.scrape(network.client)),
asyncio.create_task(tvpass.scrape(network.client)),
asyncio.create_task(volo.scrape(network.client)),
asyncio.create_task(watchfooty.scrape(network.client)),
]
@ -69,6 +71,7 @@ async def main() -> None:
| strmd.urls
| streamfree.urls
| tvpass.urls
| volo.urls
| watchfooty.urls
)