- re-add xstreameast.py
This commit is contained in:
doms9 2026-04-15 20:38:27 -04:00
parent 68e2d41659
commit 00000d913c
2 changed files with 182 additions and 0 deletions

View file

@ -24,6 +24,7 @@ from scrapers import (
tvapp,
watchfooty,
webcast,
xstreameast,
)
from scrapers.utils import get_logger, network
@ -80,6 +81,7 @@ async def main() -> None:
asyncio.create_task(totalsportek.scrape()),
asyncio.create_task(tvapp.scrape()),
asyncio.create_task(webcast.scrape()),
asyncio.create_task(xstreameast.scrape()),
]
await asyncio.gather(*(pw_tasks + httpx_tasks))
@ -115,6 +117,7 @@ async def main() -> None:
| tvapp.urls
| watchfooty.urls
| webcast.urls
| xstreameast.urls
)
live_events: list[str] = []