mirror of
https://github.com/doms9/iptv.git
synced 2026-01-21 03:59:03 +01:00
e
This commit is contained in:
parent
cce6beba98
commit
00000d9898
18 changed files with 33 additions and 33 deletions
|
|
@ -13,7 +13,7 @@ urls: dict[str, dict[str, str | float]] = {}
|
|||
|
||||
TAG = "FAWA"
|
||||
|
||||
CACHE_FILE = Cache(f"{TAG.lower()}.json", exp=10_800)
|
||||
CACHE_FILE = Cache(f"{TAG}.json", exp=10_800)
|
||||
|
||||
BASE_URL = "http://www.fawanews.sc/"
|
||||
|
||||
|
|
|
|||
|
|
@ -11,9 +11,9 @@ urls: dict[str, dict[str, str | float]] = {}
|
|||
|
||||
TAG = "LOTUS"
|
||||
|
||||
CACHE_FILE = Cache(f"{TAG.lower()}.json", exp=5_400)
|
||||
CACHE_FILE = Cache(f"{TAG}.json", exp=5_400)
|
||||
|
||||
API_CACHE = Cache(f"{TAG.lower()}-api.json", exp=28_800)
|
||||
API_CACHE = Cache(f"{TAG}-api.json", exp=28_800)
|
||||
|
||||
BASE_URL = "https://lotusgamehd.xyz/api-event.php"
|
||||
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ urls: dict[str, dict[str, str | float]] = {}
|
|||
|
||||
TAG = "PIXEL"
|
||||
|
||||
CACHE_FILE = Cache(f"{TAG.lower()}.json", exp=19_800)
|
||||
CACHE_FILE = Cache(f"{TAG}.json", exp=19_800)
|
||||
|
||||
BASE_URL = "https://pixelsport.tv/backend/livetv/events"
|
||||
|
||||
|
|
|
|||
|
|
@ -11,9 +11,9 @@ urls: dict[str, dict[str, str | float]] = {}
|
|||
|
||||
TAG = "PPV"
|
||||
|
||||
CACHE_FILE = Cache(f"{TAG.lower()}.json", exp=10_800)
|
||||
CACHE_FILE = Cache(f"{TAG}.json", exp=10_800)
|
||||
|
||||
API_FILE = Cache(f"{TAG.lower()}-api.json", exp=19_800)
|
||||
API_FILE = Cache(f"{TAG}-api.json", exp=19_800)
|
||||
|
||||
API_MIRRORS = [
|
||||
"https://old.ppv.to/api/streams",
|
||||
|
|
|
|||
|
|
@ -14,9 +14,9 @@ urls: dict[str, dict[str, str | float]] = {}
|
|||
|
||||
TAG = "ROXIE"
|
||||
|
||||
CACHE_FILE = Cache(f"{TAG.lower()}.json", exp=10_800)
|
||||
CACHE_FILE = Cache(f"{TAG}.json", exp=10_800)
|
||||
|
||||
HTML_CACHE = Cache(f"{TAG.lower()}-html.json", exp=19_800)
|
||||
HTML_CACHE = Cache(f"{TAG}-html.json", exp=19_800)
|
||||
|
||||
BASE_URL = "https://roxiestreams.live"
|
||||
|
||||
|
|
|
|||
|
|
@ -12,9 +12,9 @@ urls: dict[str, dict[str, str | float]] = {}
|
|||
|
||||
TAG = "SHARK"
|
||||
|
||||
CACHE_FILE = Cache(f"{TAG.lower()}.json", exp=10_800)
|
||||
CACHE_FILE = Cache(f"{TAG}.json", exp=10_800)
|
||||
|
||||
HTML_CACHE = Cache(f"{TAG.lower()}-html.json", exp=19_800)
|
||||
HTML_CACHE = Cache(f"{TAG}-html.json", exp=19_800)
|
||||
|
||||
BASE_URL = "https://sharkstreams.net"
|
||||
|
||||
|
|
|
|||
|
|
@ -12,9 +12,9 @@ log = get_logger(__name__)
|
|||
|
||||
urls: dict[str, dict[str, str | float]] = {}
|
||||
|
||||
TAG = "SPRT9"
|
||||
TAG = "SPORT9"
|
||||
|
||||
CACHE_FILE = Cache(f"{TAG.lower()}.json", exp=3_600)
|
||||
CACHE_FILE = Cache(f"{TAG}.json", exp=3_600)
|
||||
|
||||
BASE_URL = "https://sport9.ru"
|
||||
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ urls: dict[str, dict[str, str | float]] = {}
|
|||
|
||||
TAG = "STRMBTW"
|
||||
|
||||
CACHE_FILE = Cache(f"{TAG.lower()}.json", exp=3_600)
|
||||
CACHE_FILE = Cache(f"{TAG}.json", exp=3_600)
|
||||
|
||||
BASE_URL = "https://streambtw.com"
|
||||
|
||||
|
|
|
|||
|
|
@ -11,9 +11,9 @@ urls: dict[str, dict[str, str | float]] = {}
|
|||
|
||||
TAG = "STRMCNTR"
|
||||
|
||||
CACHE_FILE = Cache(f"{TAG.lower()}.json", exp=10_800)
|
||||
CACHE_FILE = Cache(f"{TAG}.json", exp=10_800)
|
||||
|
||||
API_FILE = Cache(f"{TAG.lower()}-api.json", exp=28_800)
|
||||
API_FILE = Cache(f"{TAG}-api.json", exp=28_800)
|
||||
|
||||
BASE_URL = "https://backendstreamcenter.youshop.pro:488/api/Parties"
|
||||
|
||||
|
|
@ -68,7 +68,7 @@ async def get_events(
|
|||
events = []
|
||||
|
||||
start_dt = now.delta(minutes=-30)
|
||||
end_dt = now.delta(minutes=30)
|
||||
end_dt = now.delta(minutes=10)
|
||||
|
||||
for stream_group in api_data:
|
||||
category_id: int = stream_group.get("categoryId")
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ urls: dict[str, dict[str, str | float]] = {}
|
|||
|
||||
TAG = "STRMFREE"
|
||||
|
||||
CACHE_FILE = Cache(f"{TAG.lower()}.json", exp=19_800)
|
||||
CACHE_FILE = Cache(f"{TAG}.json", exp=19_800)
|
||||
|
||||
BASE_URL = "https://streamfree.to/"
|
||||
|
||||
|
|
|
|||
|
|
@ -14,9 +14,9 @@ urls: dict[str, dict[str, str | float]] = {}
|
|||
|
||||
TAG = "STRMHUB"
|
||||
|
||||
CACHE_FILE = Cache(f"{TAG.lower()}.json", exp=10_800)
|
||||
CACHE_FILE = Cache(f"{TAG}.json", exp=10_800)
|
||||
|
||||
HTML_CACHE = Cache(f"{TAG.lower()}-html.json", exp=28_800)
|
||||
HTML_CACHE = Cache(f"{TAG}-html.json", exp=28_800)
|
||||
|
||||
BASE_URL = "https://streamhub.pro/"
|
||||
|
||||
|
|
|
|||
|
|
@ -13,11 +13,11 @@ log = get_logger(__name__)
|
|||
|
||||
urls: dict[str, dict[str, str | float]] = {}
|
||||
|
||||
TAG = "STRMSG8"
|
||||
TAG = "STRMSGATE"
|
||||
|
||||
CACHE_FILE = Cache(f"{TAG.lower()}.json", exp=10_800)
|
||||
CACHE_FILE = Cache(f"{TAG}.json", exp=10_800)
|
||||
|
||||
API_FILE = Cache(f"{TAG.lower()}-api.json", exp=28_800)
|
||||
API_FILE = Cache(f"{TAG}-api.json", exp=28_800)
|
||||
|
||||
BASE_URL = "https://streamingon.org"
|
||||
|
||||
|
|
|
|||
|
|
@ -14,9 +14,9 @@ urls: dict[str, dict[str, str | float]] = {}
|
|||
|
||||
TAG = "STRMD"
|
||||
|
||||
CACHE_FILE = Cache(f"{TAG.lower()}.json", exp=10_800)
|
||||
CACHE_FILE = Cache(f"{TAG}.json", exp=10_800)
|
||||
|
||||
API_FILE = Cache(f"{TAG.lower()}-api.json", exp=28_800)
|
||||
API_FILE = Cache(f"{TAG}-api.json", exp=28_800)
|
||||
|
||||
MIRRORS = [
|
||||
"https://streami.su",
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ urls: dict[str, dict[str, str | float]] = {}
|
|||
|
||||
TAG = "TIM"
|
||||
|
||||
CACHE_FILE = Cache(f"{TAG.lower()}.json", exp=10_800)
|
||||
CACHE_FILE = Cache(f"{TAG}.json", exp=3_600)
|
||||
|
||||
API_URL = "https://api.timstreams.site/main"
|
||||
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ urls: dict[str, dict[str, str | float]] = {}
|
|||
|
||||
TAG = "TVP"
|
||||
|
||||
CACHE_FILE = Cache(f"{TAG.lower()}.json", exp=86_400)
|
||||
CACHE_FILE = Cache(f"{TAG}.json", exp=86_400)
|
||||
|
||||
BASE_URL = "https://tvpass.org/playlist/m3u"
|
||||
|
||||
|
|
|
|||
|
|
@ -14,11 +14,11 @@ log = get_logger(__name__)
|
|||
|
||||
urls: dict[str, dict[str, str | float]] = {}
|
||||
|
||||
TAG = "WFTY"
|
||||
TAG = "WATCHFTY"
|
||||
|
||||
CACHE_FILE = Cache(f"{TAG.lower()}.json", exp=10_800)
|
||||
CACHE_FILE = Cache(f"{TAG}.json", exp=10_800)
|
||||
|
||||
API_FILE = Cache(f"{TAG.lower()}-api.json", exp=28_800)
|
||||
API_FILE = Cache(f"{TAG}-api.json", exp=28_800)
|
||||
|
||||
API_MIRRORS = ["https://api.watchfooty.top", "https://api.watchfooty.st"]
|
||||
|
||||
|
|
|
|||
|
|
@ -11,11 +11,11 @@ log = get_logger(__name__)
|
|||
|
||||
urls: dict[str, dict[str, str | float]] = {}
|
||||
|
||||
TAG = "WEBCST"
|
||||
TAG = "WEBCAST"
|
||||
|
||||
CACHE_FILE = Cache(f"{TAG.lower()}.json", exp=10_800)
|
||||
CACHE_FILE = Cache(f"{TAG}.json", exp=10_800)
|
||||
|
||||
HTML_CACHE = Cache(f"{TAG.lower()}-html.json", exp=86_400)
|
||||
HTML_CACHE = Cache(f"{TAG}-html.json", exp=86_400)
|
||||
|
||||
BASE_URLS = {"NFL": "https://nflwebcast.com", "NHL": "https://slapstreams.com"}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue