summaryrefslogtreecommitdiffstats
path: root/scripts/genspecialtable.py
diff options
context:
space:
mode:
authorPeng Wu <alexepico@gmail.com>2011-10-25 15:10:02 +0800
committerPeng Wu <alexepico@gmail.com>2011-10-25 15:10:02 +0800
commitcfa83483dae050b6010f9de0f9fef8b76501f520 (patch)
tree7411903647d13c338cf9081f8b322787779b2b14 /scripts/genspecialtable.py
parent0cf993ec98d7f25475bd1c1a8266e5822caeb5f9 (diff)
downloadlibpinyin-cfa83483dae050b6010f9de0f9fef8b76501f520.tar.gz
libpinyin-cfa83483dae050b6010f9de0f9fef8b76501f520.tar.xz
libpinyin-cfa83483dae050b6010f9de0f9fef8b76501f520.zip
begin to write special table
Diffstat (limited to 'scripts/genspecialtable.py')
-rw-r--r--scripts/genspecialtable.py43
1 files changed, 43 insertions, 0 deletions
diff --git a/scripts/genspecialtable.py b/scripts/genspecialtable.py
new file mode 100644
index 0000000..bc92d0b
--- /dev/null
+++ b/scripts/genspecialtable.py
@@ -0,0 +1,43 @@
+# -*- coding: utf-8 -*-
+# vim:set et sts=4 sw=4:
+#
+# libpinyin - Library to deal with pinyin.
+#
+# Copyright (C) 2011 Peng Wu <alexepico@gmail.com>
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2, or (at your option)
+# any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+import sys
+import pinyin
+
+pinyin_list = sorted(pinyin.PINYIN_LIST)
+shengmu_list = sorted(pinyin.SHENGMU_LIST)
+yunmu_list = sorted(pinyin.YUNMU_LIST)
+
+def get_all_special():
+ for p in pinyin_list:
+ if p[-1] in ["n", "g", "r"]:
+ for yun in yunmu_list:
+ if yun not in pinyin_list:
+ continue
+ new_pinyin = p[-1] + yun
+ # if new_pinyin in pinyin_list:
+ yield p, yun, p[:-1], new_pinyin
+ elif p[-1] in ["e"]:
+ yield p, "r", p[:-1], "er"
+
+if __name__ == "__main__":
+ for pinyins in get_all_special():
+ print (pinyins)