aboutsummaryrefslogtreecommitdiff
path: root/json_to_wiki.py
blob: b62d320343650a68bf5716ccaebf5c1741f7d1a0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import json
import sys

import export

def main():
    everything = json.load(sys.stdin)

    def _export():
        for (name, valuess) in everything.iteritems():
            print name
            templates = []

            for (tname, values) in valuess:
                template = export.Template(
                    tname.decode('utf8'), values.items())
                templates.append(template)

            yield (name, templates)

    export.output_multi('converted', _export())

if __name__ == '__main__':
    main()