Skip to content

Latest commit

 

History

History
44 lines (27 loc) · 799 Bytes

README.rst

File metadata and controls

44 lines (27 loc) · 799 Bytes

xpinyin

https://travis-ci.org/lxneng/xpinyin.png?branch=master https://pypip.in/d/xpinyin/badge.png

translate chinese hanzi to pinyin by python, inspired by flyerhzm’s chinese_pinyin gem

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编码汉字