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
|
#!/usr/bin/python3
import os, sys
import codecs
from importer import import_to_sunpinyin_user_dict
def load_fcitx_user_dict (fname):
result = []
f = codecs.open (fname, "r", "GB18030")
for l in f:
if l[0] in ('\n'):
continue
pystr, utf8str = l.strip().split(" ")
result.append ((pystr, utf8str))
return result
def main ():
if len (sys.argv) != 2:
os.system ("/usr/bin/mb2org ~/.fcitx/pyusrphrase.mb > /tmp/fcitx_userdict_gb.txt")
fcitx_user_dict = load_fcitx_user_dict("/tmp/fcitx_userdict_gb.txt")
os.system ("rm -rf /tmp/fcitx_userdict_gb.txt")
else:
fcitx_user_dict = load_fcitx_user_dict(sys.argv[1])
import_to_sunpinyin_user_dict (fcitx_user_dict)
if __name__ == "__main__":
main()
# -*- indent-tabs-mode: nil -*- vim:et:ts=4
|