This commit is contained in:
doms9 2025-10-19 11:38:06 -04:00
parent 8adc4f7036
commit 00000d9134
7 changed files with 33 additions and 59 deletions

View file

@ -2,7 +2,16 @@
import asyncio
from pathlib import Path
from scrapers import fstv, streambtw, streameast, streamed, strmd, tvpass, watchfooty
from scrapers import (
fstv,
ppv,
streambtw,
streameast,
streamed,
strmd,
tvpass,
watchfooty,
)
from scrapers.utils import get_logger, network
log = get_logger(__name__)
@ -29,6 +38,7 @@ async def main() -> None:
tasks = [
asyncio.create_task(fstv.scrape(network.client)),
asyncio.create_task(ppv.scrape(network.client)),
asyncio.create_task(streambtw.scrape(network.client)),
asyncio.create_task(streameast.scrape(network.client)),
asyncio.create_task(streamed.scrape(network.client)),
@ -41,6 +51,7 @@ async def main() -> None:
additions = (
fstv.urls
| ppv.urls
| streambtw.urls
| streameast.urls
| streamed.urls