This commit is contained in:
doms9 2025-11-26 19:53:42 -05:00
parent 9a23b6acb7
commit 00000d9049
3 changed files with 23 additions and 299 deletions

View file

@ -15,7 +15,6 @@ from scrapers import (
streamfree,
strmd,
tvpass,
vuen,
watchfooty,
)
from scrapers.utils import get_logger, network
@ -56,7 +55,6 @@ 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(vuen.scrape(network.client)),
asyncio.create_task(watchfooty.scrape(network.client)),
]
@ -74,7 +72,6 @@ async def main() -> None:
| strmd.urls
| streamfree.urls
| tvpass.urls
| vuen.urls
| watchfooty.urls
)