update M3U8

This commit is contained in:
GitHub Actions Bot 2025-11-15 13:13:41 -05:00
parent f721bd5e33
commit b99d98ab82
5 changed files with 3988 additions and 1264 deletions

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -46,7 +46,7 @@ async def main() -> None:
tasks = [ tasks = [
asyncio.create_task(fawa.scrape(network.client)), asyncio.create_task(fawa.scrape(network.client)),
asyncio.create_task(lotus.scrape(network.client)), asyncio.create_task(lotus.scrape(network.client)),
# asyncio.create_task(pixel.scrape(network.client)), asyncio.create_task(pixel.scrape(network.client)),
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(streambtw.scrape(network.client)), asyncio.create_task(streambtw.scrape(network.client)),

View file

@ -9,7 +9,7 @@ log = get_logger(__name__)
urls: dict[str, dict[str, str | float]] = {} urls: dict[str, dict[str, str | float]] = {}
CACHE_FILE = Cache("lotus.json", exp=3_600) CACHE_FILE = Cache("lotus.json", exp=7_200)
API_CACHE = Cache("lotus-api.json", exp=28_800) API_CACHE = Cache("lotus-api.json", exp=28_800)

View file

@ -26,19 +26,19 @@ MIRRORS = [
SPORT_ENDPOINTS = [ SPORT_ENDPOINTS = [
"american-football", "american-football",
"australian-football", # "australian-football",
"baseball", # "baseball",
"basketball", "basketball",
"cricket", # "cricket",
"darts", # "darts",
"fighting", "fighting",
"football", "football",
"golf", # "golf",
"hockey", "hockey",
"racing", "racing",
"rugby", # "rugby",
"tennis", # "tennis",
"volleyball", # "volleyball",
] ]