long2015 / xpinyin

translate chinese hanzi to pinyin by python

Home Page:http://lxneng.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

>>> from xpinyin import Pinyin
>>> p = Pinyin()
>>> # default splitter is `-`
>>> p.get_pinyin(u"上海")
'shang-hai'
>>> # show tone marks
>>> p.get_pinyin(u"上海", show_tone_marks=True)
'shàng-hǎi'
>>> # remove splitter
>>> p.get_pinyin(u"上海", '')
'shanghai'
>>> # set splitter as whitespace
>>> p.get_pinyin(u"上海", ' ')
'shang hai'
>>> p.get_initial(u"上")
'S'
>>> p.get_initials(u"上海")
'S-H'
>>> p.get_initials(u"上海", u'')
'SH'
>>> p.get_initials(u"上海", u' ')
'S H'

请输入utf8编码汉字

About

translate chinese hanzi to pinyin by python

http://lxneng.com


Languages

Language:Python 100.0%