- add xyzstream.py
- misc edits.
This commit is contained in:
doms9 2026-05-25 22:25:24 -04:00
parent c92a0ecab6
commit 00000d96d1
3 changed files with 80 additions and 3 deletions

View file

@ -22,6 +22,7 @@ from scrapers import (
tvapp,
watchfooty,
webcast,
xyzstream,
)
from scrapers.utils import get_logger, network
@ -76,6 +77,7 @@ async def main() -> None:
# asyncio.create_task(totalsportek.scrape()),
asyncio.create_task(tvapp.scrape()),
asyncio.create_task(webcast.scrape()),
asyncio.create_task(xyzstream.scrape()),
]
await asyncio.gather(*(pw_tasks + httpx_tasks))
@ -109,6 +111,7 @@ async def main() -> None:
| tvapp.urls
| watchfooty.urls
| webcast.urls
| xyzstream.urls
)
live_events: list[str] = []