- remove mirror for totalsportek.py
- re-add xstreameast.py
- edit caching for livetvsx.py
This commit is contained in:
doms9 2026-04-26 22:20:31 -04:00
parent 7a28225845
commit 00000d988a
4 changed files with 231 additions and 83 deletions

View file

@ -23,6 +23,7 @@ from scrapers import (
tvapp,
watchfooty,
webcast,
xstreameast,
)
from scrapers.utils import get_logger, network
@ -78,6 +79,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))
@ -112,6 +114,7 @@ async def main() -> None:
| tvapp.urls
| watchfooty.urls
| webcast.urls
| xstreameast.urls
)
live_events: list[str] = []