blob: c5eba7570d68e710164c199bc56fea90d7a3303e (
plain)
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
|
xpinyin
translate chinese hanzi to pinyin by python, inspired by flyerhzm’s chinese_pinyin gem
https://github.com/lxneng/xpinyin
* Install
pip install xpinyin
* Usage
In [1]: from xpinyin import Pinyin
In [2]: p = Pinyin()
In [3]: p.get_pinyin(u"上海")
Out[3]: 'shanghai'
In [4]: p.get_pinyin(u"上海", '-')
Out[4]: 'shang-hai'
In [5]: p.get_pinyin(u"上海", ' ')
Out[5]: 'shang hai'
In [6]: p.get_initials(u"上")
Out[6]: 'S'
请输入utf8编码汉字
------------------------------------------------------------------------
translate chinese hanzi to pinyin by python, inspired by flyerhzm’s
`chinese\_pinyin`_ gem
usage
-----
::
In [1]: from xpinyin import Pinyin
In [2]: p = Pinyin()
In [3]: p.get_pinyin(u"上海")
Out[3]: 'shang-hai'
In [4]: p.get_initials(u"上")
Out[4]: 'S'
请输入utf8编码汉字
.. _chinese\_pinyin: https://github.com/flyerhzm/chinese_pinyin
--------------------------------------------------------------------
ChangeLogs:
2013/07/28, LIweitiaNux <liweitianux@gmail.com>
* add method 'get_initial()', support string with more than 1 char
* add method 'get_py()', to get the initial letters of pinyin
|