Skip to content
forked from lxneng/xpinyin

translate chinese hanzi to pinyin by python最好用的

Notifications You must be signed in to change notification settings

boneyao/xpinyin

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

51 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

xpinyin

https://badge.fury.io/py/xpinyin.png 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]: 'shang-hai'

In [4]: p.get_pinyin(u"上海", '')
Out[4]: 'shanghai'

In [5]: p.get_pinyin(u"上海", ' ')
Out[5]: 'shang hai'

In [6]: p.get_initial(u"上")
Out[6]: 'S'

In [7]: p.get_initials(u"上海")
Out[7]: 'S-H'

In [8]: p.get_initials(u"上海", u'')
Out[8]: 'SH'

In [9]: p.get_initials(u"上海", u' ')
Out[9]: 'S H'

请输入utf8编码汉字

About

translate chinese hanzi to pinyin by python最好用的

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published