2025-08-17 10:05:09 -04:00
|
|
|
#!/usr/bin/env python3
|
2025-08-27 10:26:56 -04:00
|
|
|
import asyncio
|
2025-08-17 10:05:09 -04:00
|
|
|
import gzip
|
2025-09-18 17:31:45 -04:00
|
|
|
import json
|
2025-08-17 10:05:09 -04:00
|
|
|
from pathlib import Path
|
|
|
|
|
from xml.etree import ElementTree as ET
|
|
|
|
|
|
|
|
|
|
import httpx
|
|
|
|
|
|
2025-09-18 17:31:45 -04:00
|
|
|
tvg_ids_file = Path(__file__).parent / "TVG-IDs.json"
|
2025-08-17 10:05:09 -04:00
|
|
|
epg_file = Path(__file__).parent / "TV.xml"
|
|
|
|
|
epg_urls = [
|
2025-09-18 17:31:45 -04:00
|
|
|
"https://epgshare01.online/epgshare01/epg_ripper_CA1.xml.gz",
|
2025-09-19 02:05:40 -04:00
|
|
|
"https://epgshare01.online/epgshare01/epg_ripper_DUMMY_CHANNELS.xml.gz",
|
2025-09-18 17:31:45 -04:00
|
|
|
"https://epgshare01.online/epgshare01/epg_ripper_ES1.xml.gz",
|
|
|
|
|
"https://epgshare01.online/epgshare01/epg_ripper_FANDUEL1.xml.gz",
|
|
|
|
|
"https://epgshare01.online/epgshare01/epg_ripper_MY1.xml.gz",
|
|
|
|
|
"https://epgshare01.online/epgshare01/epg_ripper_PLEX1.xml.gz",
|
|
|
|
|
"https://epgshare01.online/epgshare01/epg_ripper_PT1.xml.gz",
|
|
|
|
|
"https://epgshare01.online/epgshare01/epg_ripper_UK1.xml.gz",
|
2025-08-17 10:05:09 -04:00
|
|
|
"https://epgshare01.online/epgshare01/epg_ripper_US1.xml.gz",
|
2025-09-14 11:10:51 -04:00
|
|
|
"https://epgshare01.online/epgshare01/epg_ripper_US2.xml.gz",
|
2025-08-17 10:05:09 -04:00
|
|
|
"https://epgshare01.online/epgshare01/epg_ripper_US_LOCALS2.xml.gz",
|
2025-09-18 17:31:45 -04:00
|
|
|
"https://epgshare01.online/epgshare01/epg_ripper_US_SPORTS1.xml.gz",
|
2025-08-17 10:05:09 -04:00
|
|
|
]
|
|
|
|
|
|
2025-08-27 10:26:56 -04:00
|
|
|
client = httpx.AsyncClient(
|
2025-08-17 17:01:52 -04:00
|
|
|
timeout=5,
|
|
|
|
|
follow_redirects=True,
|
|
|
|
|
headers={
|
|
|
|
|
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0"
|
|
|
|
|
},
|
|
|
|
|
)
|
|
|
|
|
|
2025-08-17 10:05:09 -04:00
|
|
|
|
2025-08-27 10:26:56 -04:00
|
|
|
async def fetch_xml(url: str) -> ET.Element:
|
2025-08-17 10:05:09 -04:00
|
|
|
try:
|
2025-08-27 10:26:56 -04:00
|
|
|
r = await client.get(url)
|
2025-08-17 10:05:09 -04:00
|
|
|
r.raise_for_status()
|
|
|
|
|
except Exception as e:
|
|
|
|
|
raise SystemExit(f'Failed to fetch "{url}"\n{e}') from e
|
|
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
decompressed_data = gzip.decompress(r.content)
|
|
|
|
|
|
|
|
|
|
return ET.fromstring(decompressed_data)
|
|
|
|
|
|
|
|
|
|
except Exception as e:
|
|
|
|
|
raise SystemExit(f'Failed to decompress and parse XML from "{url}"\n{e}') from e
|
|
|
|
|
|
|
|
|
|
|
2025-08-27 10:26:56 -04:00
|
|
|
async def main() -> None:
|
2025-09-18 17:31:45 -04:00
|
|
|
data = json.loads(tvg_ids_file.read_text(encoding="utf-8"))
|
|
|
|
|
|
|
|
|
|
tvg_ids = {v["tvg-id"]: v["logo"] for v in data.values()}
|
2025-08-17 10:05:09 -04:00
|
|
|
|
|
|
|
|
root = ET.Element("tv")
|
|
|
|
|
|
2025-08-27 10:26:56 -04:00
|
|
|
tasks = [fetch_xml(url) for url in epg_urls]
|
|
|
|
|
results = await asyncio.gather(*tasks)
|
|
|
|
|
|
|
|
|
|
for epg_data in results:
|
|
|
|
|
if epg_data is None:
|
|
|
|
|
continue
|
2025-08-17 10:05:09 -04:00
|
|
|
|
|
|
|
|
for channel in epg_data.findall("channel"):
|
|
|
|
|
if (channel_id := channel.get("id")) in tvg_ids:
|
|
|
|
|
for icon_tag in channel.findall("icon"):
|
|
|
|
|
icon_tag.set("src", tvg_ids[channel_id])
|
|
|
|
|
|
|
|
|
|
if (url_tag := channel.find("url")) is not None:
|
|
|
|
|
channel.remove(url_tag)
|
|
|
|
|
|
|
|
|
|
root.append(channel)
|
|
|
|
|
|
|
|
|
|
for program in epg_data.findall("programme"):
|
|
|
|
|
tvg_id = program.get("channel")
|
|
|
|
|
|
|
|
|
|
if tvg_id in tvg_ids:
|
|
|
|
|
if (title_text := program.find("title").text) in [
|
|
|
|
|
"NHL Hockey",
|
|
|
|
|
"Live: NFL Football",
|
|
|
|
|
] and (subtitle := program.find("sub-title")) is not None:
|
|
|
|
|
|
|
|
|
|
program.find("title").text = f"{title_text} {subtitle.text}"
|
|
|
|
|
|
|
|
|
|
root.append(program)
|
|
|
|
|
|
|
|
|
|
tree = ET.ElementTree(root)
|
|
|
|
|
|
|
|
|
|
tree.write(epg_file, encoding="utf-8", xml_declaration=True)
|
|
|
|
|
|
|
|
|
|
print(f"EPG saved to {epg_file.name}")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2025-08-27 10:26:56 -04:00
|
|
|
asyncio.run(main())
|