- edit scraping method for webcast.py
- edit domain for totalsportek.py
This commit is contained in:
doms9 2026-04-09 19:29:20 -04:00
parent 3deb6a3f17
commit 00000d922b
3 changed files with 35 additions and 72 deletions

View file

@ -67,6 +67,7 @@ async def main() -> None:
# asyncio.create_task(fsports.scrape(xtrnl_brwsr)),
asyncio.create_task(ppv.scrape(xtrnl_brwsr)),
asyncio.create_task(roxie.scrape(hdl_brwsr)),
asyncio.create_task(webcast.scrape(hdl_brwsr)),
]
httpx_tasks = [
@ -83,7 +84,6 @@ async def main() -> None:
asyncio.create_task(streamtpnew.scrape()),
# asyncio.create_task(totalsportek.scrape()),
asyncio.create_task(tvapp.scrape()),
asyncio.create_task(webcast.scrape()),
]
await asyncio.gather(*(pw_tasks + httpx_tasks))