diff options
Diffstat (limited to '')
-rw-r--r-- | src/format2csv.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/format2csv.py b/src/format2csv.py new file mode 100644 index 0000000..a4d4d6d --- /dev/null +++ b/src/format2csv.py @@ -0,0 +1,23 @@ + +import glob +import csv +import sys +import json + +def main(args): + with open(args[1], 'w') as ofp: + out = csv.writer(ofp) + for format_path in sorted(glob.glob("%s/*.json" % args[2])): + with open(format_path) as fp: + format_dict = json.load(fp) + + for key in sorted(format_dict): + value = format_dict[key] + if not isinstance(value, dict): + continue + if 'title' not in value: + raise Exception("format '%s' is missing 'title'" % key) + out.writerow((value['title'], key, value['description'])) + +if __name__ == "__main__": + sys.exit(main(sys.argv)) |