This commit is contained in:
gauthiier
2015-07-10 13:57:17 +02:00
parent e2bf681187
commit f3f051f19c
5 changed files with 312 additions and 11 deletions
+6
View File
@@ -0,0 +1,6 @@
#!/usr/bin/python2.7
import sys, json
if __name__ == '__main__':
fp = sys.stdin
data = json.loads(fp.read())
print json.dumps(data, indent=2, separators=(',',':'))