mirror of
https://github.com/doms9/iptv.git
synced 2025-12-10 20:39:03 +01:00
e
- add NHL to roxie.py - remove unused imports
This commit is contained in:
parent
8d51dc88f0
commit
00000d92ad
3 changed files with 3 additions and 3 deletions
|
|
@ -51,7 +51,7 @@ async def main() -> None:
|
|||
asyncio.create_task(lotus.scrape(network.client)),
|
||||
asyncio.create_task(pixel.scrape()),
|
||||
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(sport9.scrape(network.client)),
|
||||
asyncio.create_task(streambtw.scrape(network.client)),
|
||||
|
|
|
|||
|
|
@ -24,6 +24,7 @@ SPORT_ENDPOINTS = {
|
|||
"motorsports": "Racing",
|
||||
"nba": "NBA",
|
||||
"nfl": "American Football",
|
||||
"nhl": "NHL",
|
||||
"soccer": "Soccer",
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,11 +1,10 @@
|
|||
import asyncio
|
||||
import re
|
||||
from functools import partial
|
||||
from typing import Any
|
||||
from urllib.parse import urljoin
|
||||
|
||||
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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue