diff --git a/convertjson2xmltv-gz.py b/convertjson2xmltv-gz.py index d626817..f5a6586 100644 --- a/convertjson2xmltv-gz.py +++ b/convertjson2xmltv-gz.py @@ -54,7 +54,7 @@ def convert_to_xmltv(json_data): return ET.ElementTree(tv) # Einlesen und Schreiben -with open("/export/scripts/weeklyepg.json", "r", encoding="utf-8") as f: +with open("sample.json", "r", encoding="utf-8") as f: json_data = json.load(f) # XML generieren @@ -66,5 +66,5 @@ xmltv_tree.write(xml_io, encoding="unicode", xml_declaration=True) xml_string = xml_io.getvalue() # Als .xml.gz speichern -with gzip.open("/var/www/html/stream/api/epg_stadtfilter.xml.gz", "wt", encoding="utf-8") as f: +with gzip.open("epg_stadtfilter.xml.gz", "wt", encoding="utf-8") as f: f.write(xml_string)