Skip to main content

translate chinese hanzi to pinyin by python

Project description

ypinyin

https://img.shields.io/travis/liuguangyuan/ypinyin.svg https://img.shields.io/pypi/v/ypinyin.svg https://img.shields.io/pypi/dm/ypinyin.svg

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

Install

pip install ypinyin

Usage

>>> from ypinyin 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'

如果方法中传入变量,那么直接加前缀是不可以了。而是要将变量转为utf-8编码:
>>> wordvalue = '中国'
>>> wordvalue= unicode(wordvalue,'utf-8')
>>> s = p.get_initials(wordvalue, u'').lower()
'zg'

请输入utf8编码汉字

Changelog

0.5.5 - Feb. 28, 2016

0.5.4 - Dec. 14, 2015

  • replace open() calls with io.open() for Python 3 compatibility, fix UnicodeDecodeError

  • change u730E 猎 to LIE4

  • improve readme

0.5.3 - Dec. 25, 2014

  • adjust default pinyin for character ‘什’ and ‘么’, 什么 => ‘shén-me’

0.5.2 - Jul. 6, 2014

  • 修复一些常用字的拼音标注

0.4.9 - Oct. 25, 2013

  • change README and get_initials; add get_initial [tangsty]

0.4.8 - Jun. 16, 2013

  • change README and get_initials; add get_initial [tangsty]

  • add download status image to README.rst [liuguangyuan]

  • add travis status image to README.rst [liuguangyuan]

  • add .travis.yml [liuguangyuan]

  • 添加测试 [liuguangyuan]

  • 解决翻译中英文混合句子问题 [liuguangyuan]

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ypinyin-0.5.6.tar.gz (129.2 kB view details)

Uploaded Source

File details

Details for the file ypinyin-0.5.6.tar.gz.

File metadata

  • Download URL: ypinyin-0.5.6.tar.gz
  • Upload date:
  • Size: 129.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: Python-urllib/3.6

File hashes

Hashes for ypinyin-0.5.6.tar.gz
Algorithm Hash digest
SHA256 82f12bf9cefc7c74a6f271407858a4cd5ada24a260835e3746e0235ab5565cb6
MD5 7e7c6c682ce556963e6fe2a2afcddd1b
BLAKE2b-256 f63a6250aa225bb7f204bdf59e4bcf8c7c719857b8270191546394af8ea21ca5

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page