diff --git a/tools/rfc-genlist.py b/tools/rfc-genlist.py new file mode 100644 index 0000000..5085c81 --- /dev/null +++ b/tools/rfc-genlist.py @@ -0,0 +1,8 @@ +import json +import os +filename = os.path.join("../", "MANIFEST.json") +with open(filename) as fp: + t = json.load(fp) + +for taxo in sorted(t['taxonomies'], key=lambda k: k['name']): + print ("{}:\n: {}\n".format(taxo['name'], taxo['description']))