This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| # x4_savegame_xmlanalyzer_v1.py | |
| # AUTHOR: xixas | DATE: 2022.01.09 | LICENSE: WTFPL/PDM/CC0... your choice | |
| # DESCRIPTION: Parse an X4 Foundations savegame XML file and report tag statistics | |
| import argparse | |
| import re | |
| import sys | |
| import xml.sax |