This commit is contained in:
doms9 2025-10-28 16:54:17 -04:00
parent 76331d1da6
commit 00000d931d
3 changed files with 8 additions and 8 deletions

View file

@ -8,8 +8,8 @@ from scrapers import (
streambtw,
streameast,
streamed,
strfree,
strmd,
strmfree,
tvpass,
watchfooty,
)
@ -43,8 +43,8 @@ async def main() -> None:
asyncio.create_task(streambtw.scrape(network.client)),
asyncio.create_task(streameast.scrape(network.client)),
asyncio.create_task(streamed.scrape(network.client)),
asyncio.create_task(strfree.scrape(network.client)),
asyncio.create_task(strmd.scrape(network.client)),
asyncio.create_task(strmfree.scrape(network.client)),
asyncio.create_task(tvpass.scrape(network.client)),
asyncio.create_task(watchfooty.scrape(network.client)),
]
@ -57,8 +57,8 @@ async def main() -> None:
| streambtw.urls
| streameast.urls
| streamed.urls
| strfree.urls
| strmd.urls
| strmfree.urls
| tvpass.urls
| watchfooty.urls
)