diff --git a/jsonDump.py b/jsonDump.py new file mode 100755 index 0000000..a79b3a0 --- /dev/null +++ b/jsonDump.py @@ -0,0 +1,10 @@ +#!/usr/bin/env python3 +import json +import sys + +content = None + +with open(sys.argv[1], 'r') as fh: + content = json.load(fh, encoding='utf-8') + +print(json.dumps(content, indent=4, separators=(',', ': '), ensure_ascii=False)) diff --git a/SignalDesktopDecrypt.py b/signalDesktopDecrypt.py similarity index 100% rename from SignalDesktopDecrypt.py rename to signalDesktopDecrypt.py