This commit is contained in:
doms9 2025-08-23 15:15:47 -04:00
parent bbda8864e5
commit 00000d93c6
3 changed files with 11 additions and 6 deletions

View file

@ -42,7 +42,7 @@ def main() -> None:
base_m3u8, chnl_number = vanilla_fetch()
additions = {**tvpass.urls, **fstv.urls}
additions = tvpass.urls | fstv.urls
lines = []

View file

@ -5,7 +5,12 @@ from bs4 import BeautifulSoup
urls: dict[str, str] = {}
mirrors = {"https://fstv.online", "https://fstv.space", "https://fstv.zip"}
mirrors = {
"https://fstv.online",
"https://fstv.space",
"https://fstv.zip",
"https://fstv.us",
}
def check_status(client: httpx.Client, url: str) -> bool:

View file

@ -18,12 +18,12 @@ TZ = pytz.timezone("America/New_York")
def cache_expired(t: float) -> bool:
now = datetime.now(TZ)
r = now.replace(hour=11, minute=0, second=0, microsecond=0)
eleven = now.replace(hour=11, minute=0, second=0, microsecond=0)
if now < r:
r -= timedelta(days=1)
if now < eleven:
eleven -= timedelta(days=1)
return t < r.timestamp()
return t < eleven.timestamp()
def load_cache() -> dict[str, str]: