e
This commit is contained in:
parent
8609c0a39e
commit
00000d90b7
11 changed files with 501 additions and 187 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue