- add NHL to roxie.py
- remove unused imports
This commit is contained in:
doms9 2025-12-08 20:42:02 -05:00
parent 8d51dc88f0
commit 00000d92ad
3 changed files with 3 additions and 3 deletions

View file

@ -51,7 +51,7 @@ async def main() -> None:
asyncio.create_task(lotus.scrape(network.client)), asyncio.create_task(lotus.scrape(network.client)),
asyncio.create_task(pixel.scrape()), asyncio.create_task(pixel.scrape()),
asyncio.create_task(ppv.scrape(network.client)), asyncio.create_task(ppv.scrape(network.client)),
# asyncio.create_task(roxie.scrape(network.client)), asyncio.create_task(roxie.scrape(network.client)),
asyncio.create_task(shark.scrape(network.client)), asyncio.create_task(shark.scrape(network.client)),
asyncio.create_task(sport9.scrape(network.client)), asyncio.create_task(sport9.scrape(network.client)),
asyncio.create_task(streambtw.scrape(network.client)), asyncio.create_task(streambtw.scrape(network.client)),

View file

@ -24,6 +24,7 @@ SPORT_ENDPOINTS = {
"motorsports": "Racing", "motorsports": "Racing",
"nba": "NBA", "nba": "NBA",
"nfl": "American Football", "nfl": "American Football",
"nhl": "NHL",
"soccer": "Soccer", "soccer": "Soccer",
} }

View file

@ -1,11 +1,10 @@
import asyncio
import re import re
from functools import partial from functools import partial
from typing import Any from typing import Any
from urllib.parse import urljoin from urllib.parse import urljoin
import httpx import httpx
from playwright.async_api import BrowserContext, async_playwright from playwright.async_api import async_playwright
from .utils import Cache, Time, get_logger, leagues, network from .utils import Cache, Time, get_logger, leagues, network