summaryrefslogtreecommitdiff
path: root/ast2json/settings2json.py
diff options
context:
space:
mode:
authorAlex Xu <alex_y_xu@yahoo.ca>2014-04-16 15:17:31 -0400
committerAlex Xu <alex_y_xu@yahoo.ca>2014-04-16 15:17:31 -0400
commite417662dce5cae2e95ef98ee38baa8f53a02b9d5 (patch)
treedce94fb8524dece7e3fcc677ec0cf908a6ec2a97 /ast2json/settings2json.py
parent6a50d79523cf215001cdd55c74c040bd410775df (diff)
downloadhtml5ks-e417662dce5cae2e95ef98ee38baa8f53a02b9d5.tar.xz
html5ks-e417662dce5cae2e95ef98ee38baa8f53a02b9d5.zip
mbleh
Diffstat (limited to 'ast2json/settings2json.py')
-rwxr-xr-xast2json/settings2json.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/ast2json/settings2json.py b/ast2json/settings2json.py
new file mode 100755
index 0000000..a72239d
--- /dev/null
+++ b/ast2json/settings2json.py
@@ -0,0 +1,19 @@
+#!/usr/bin/env python3
+
+import json
+import sys
+
+def settings2json(ast):
+ ret = {}
+ if ast[0]['_type'] != 'Label':
+ raise TypeError('obj does not start with Label, wrong file?')
+ for label in ast:
+ if label['parameters'] is not None:
+ raise NotImplementedError()
+ ret[label['name']] = label['block']
+ return ret
+
+with open(sys.argv[1], 'r') as f:
+ output = settings2json(json.load(f))
+
+json.dump(output, open(sys.argv[2], 'w'), separators=(',', ':'))