aboutsummaryrefslogtreecommitdiff
path: root/json_to_wiki.py
blob: e5e91f957b4dd80f2538bf451a0337272f5b421d (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
27
28
#!/usr/bin/env python
# -*- coding: utf-8 -*-

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()