re-add totalsportek.py
fix xstreameast.py scraping
This commit is contained in:
doms9 2026-02-07 14:49:12 -05:00
parent bdc2048a26
commit 00000d9f21
4 changed files with 158 additions and 5 deletions

View file

@ -20,6 +20,7 @@ from scrapers import (
streamcenter,
streamhub,
streamsgate,
totalsportek,
tvpass,
watchfooty,
webcast,
@ -69,6 +70,7 @@ async def main() -> None:
asyncio.create_task(streamcenter.scrape(xtrnl_brwsr)),
asyncio.create_task(streamhub.scrape(xtrnl_brwsr)),
asyncio.create_task(streamsgate.scrape(xtrnl_brwsr)),
asyncio.create_task(totalsportek.scrape(hdl_brwsr)),
asyncio.create_task(webcast.scrape(hdl_brwsr)),
]
@ -79,7 +81,7 @@ async def main() -> None:
asyncio.create_task(shark.scrape()),
asyncio.create_task(streambtw.scrape()),
asyncio.create_task(tvpass.scrape()),
# asyncio.create_task(xstreameast.scrape()),
asyncio.create_task(xstreameast.scrape()),
]
await asyncio.gather(*(pw_tasks + httpx_tasks))
@ -111,6 +113,7 @@ async def main() -> None:
| streamcenter.urls
| streamhub.urls
| streamsgate.urls
| totalsportek.urls
| tvpass.urls
| watchfooty.urls
| webcast.urls