Начата работа над lowlevel терминалкой (по адресам из xml)

This commit is contained in:
2025-07-19 18:01:40 +03:00
parent 171f176d63
commit 6830743477
8 changed files with 1802 additions and 698 deletions

View File

@@ -1,5 +1,5 @@
# pyinstaller --onefile --distpath . --workpath ./build --specpath ./build parse_xml.py
# python -m nuitka --standalone --onefile --output-dir=. --output-dir=./build parse_xml.py
# python -m nuitka --standalone --onefile --output-dir=./build parse_xml.py
import xml.etree.ElementTree as ET
import xml.dom.minidom
import sys
@@ -348,5 +348,5 @@ with open(output_path, "w", encoding="utf-8") as f:
f.write(pretty_xml)
os.remove(input_path)
#os.remove(info_path)
os.remove(info_path)
print(f"Simplified and formatted XML saved to: {output_path}")