This commit is contained in:
doms9 2025-11-25 22:55:03 -05:00
parent d9ebddc0de
commit 00000d94d0
4 changed files with 97 additions and 38 deletions

View file

@ -9,12 +9,12 @@ from scrapers import (
ppv,
roxie,
shark,
sport9,
streambtw,
streameast,
streamfree,
strmd,
tvpass,
vuen,
watchfooty,
)
from scrapers.utils import get_logger, network
@ -49,12 +49,12 @@ async def main() -> None:
asyncio.create_task(ppv.scrape(network.client)),
asyncio.create_task(roxie.scrape(network.client)),
asyncio.create_task(shark.scrape(network.client)),
asyncio.create_task(sport9.scrape(network.client)),
asyncio.create_task(streambtw.scrape(network.client)),
asyncio.create_task(streameast.scrape(network.client)),
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)),
]
@ -66,12 +66,12 @@ async def main() -> None:
| ppv.urls
| roxie.urls
| shark.urls
| sport9.urls
| streambtw.urls
| streameast.urls
| strmd.urls
| streamfree.urls
| tvpass.urls
| vuen.urls
| watchfooty.urls
)