diff options
author | makefu <github@syntax-fehler.de> | 2013-12-30 03:05:26 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2013-12-30 03:05:26 +0100 |
commit | 0b81bca953ec7cdf373ff97b11ebd6fb847d733f (patch) | |
tree | 63d62f6c32dd6726f823eb2af32cb2a7fab03530 /assets/bin/truth2json | |
parent | 96151bd07330aee400fb99fd9f8f117bae42c9e5 (diff) |
libkrebs is obsolete
Diffstat (limited to 'assets/bin/truth2json')
-rwxr-xr-x | assets/bin/truth2json | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/assets/bin/truth2json b/assets/bin/truth2json deleted file mode 100755 index f85445b4..00000000 --- a/assets/bin/truth2json +++ /dev/null @@ -1,37 +0,0 @@ -#!/usr/bin/python - -import sys - -try: - db=sys.argv[1] -except: - db="../../db/truth" - -ret = {} - - -if db is "-": - sys.stderr.write("Using stdin\n") - f = sys.stdin -else: - sys.stderr.write("Using journal '%s'\n" % db) - f = open(db) - -for line in f: - lsplit = line.split() - date = ' '.join(lsplit[0:2]) - cmd = lsplit[2] - target = lsplit[3] - if cmd == "create": - assert target not in ret, "Target '%s' already created!" %target - ret[target] = {} - elif cmd == "set": - key = lsplit[4] - value = ' '.join(lsplit[5:]) - assert target in ret, "target '%s' not set yet!" % target - ret[target][key] = value - else: - raise AssertionError,"unknown command '%s'!" - -import json -print json.dumps(ret,sort_keys=True,indent=4) |