This commit is contained in:
doms9 2025-10-29 03:21:18 -04:00
parent 8609c0a39e
commit 00000d90b7
11 changed files with 501 additions and 187 deletions

View file

@ -5,6 +5,7 @@ from pathlib import Path
from scrapers import (
fstv,
ppv,
roxie,
streambtw,
streameast,
streamed,
@ -40,6 +41,7 @@ async def main() -> None:
tasks = [
asyncio.create_task(fstv.scrape(network.client)),
asyncio.create_task(ppv.scrape(network.client)),
asyncio.create_task(roxie.scrape(network.client)),
asyncio.create_task(streambtw.scrape(network.client)),
asyncio.create_task(streameast.scrape(network.client)),
asyncio.create_task(streamed.scrape(network.client)),
@ -54,6 +56,7 @@ async def main() -> None:
additions = (
fstv.urls
| ppv.urls
| roxie.urls
| streambtw.urls
| streameast.urls
| streamed.urls