-
-
Notifications
You must be signed in to change notification settings - Fork 615
/
gen_phrases_dict.py
62 lines (49 loc) · 1.62 KB
/
gen_phrases_dict.py
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# -*- coding: utf-8 -*-
import sys
def remove_dup_items(lst):
new_lst = []
for item in lst:
if item not in new_lst:
new_lst.append(item)
return new_lst
def parse(fp):
phrases_dict = {}
for line in in_fp.readlines():
line = line.strip()
if line.startswith('#') or not line:
continue
# 中国: zhōng guó
data = line.split('#')[0]
hanzi, pinyin = data.strip().split(':')
hanzi = hanzi.strip()
# [[zhōng], [guó]]
pinyin_list = [[s] for s in pinyin.split()]
if hanzi not in phrases_dict:
phrases_dict[hanzi] = pinyin_list
else:
for index, value in enumerate(phrases_dict[hanzi]):
value.extend(pinyin_list[index])
phrases_dict[hanzi][index] = remove_dup_items(value)
return phrases_dict
def main(in_fp, out_fp):
out_fp.write('''# -*- coding: utf-8 -*-
from __future__ import unicode_literals
# Warning: Auto-generated file, don't edit.
phrases_dict = {
''')
hanzi_pairs = sorted(parse(in_fp).items(), key=lambda x: x[0])
for hanzi, pinyin_list in hanzi_pairs:
# 中国: [[zhōng], [guó]]
new_line = " '{hanzi}': {pinyin_list},\n".format(
hanzi=hanzi.strip(), pinyin_list=pinyin_list
)
out_fp.write(new_line)
out_fp.write('}\n')
if __name__ == '__main__':
if len(sys.argv) == 1:
print('python gen_phrases_dict.py INPUT OUTPUT')
sys.exit(1)
in_f = sys.argv[1]
out_f = sys.argv[2]
with open(in_f) as in_fp, open(out_f, 'w') as out_fp:
main(in_fp, out_fp)