Skip to main content

汉字拼音转换工具.

Project description

Build Coverage PyPI version

将汉字转为拼音。可以用于汉字注音、排序、检索(Russian translation) 。

基于 hotoo/pinyin 开发。

特性

  • 根据词组智能匹配最正确的拼音。

  • 支持多音字。

  • 简单的繁体支持, 注音支持。

  • 支持多种不同拼音/注音风格。

安装

$ pip install pypinyin

文档

详细文档请访问:http://pypinyin.rtfd.io/

使用示例

Python 3(Python 2 下把 '中心' 替换为 u'中心' 即可):

>>> from pypinyin import pinyin, lazy_pinyin
>>> import pypinyin
>>> pinyin('中心')
[['zhōng'], ['xīn']]
>>> pinyin('中心', heteronym=True)  # 启用多音字模式
[['zhōng', 'zhòng'], ['xīn']]
>>> pinyin('中心', style=pypinyin.FIRST_LETTER)  # 设置拼音风格
[['z'], ['x']]
>>> pinyin('中心', style=pypinyin.TONE2, heteronym=True)
[['zho1ng', 'zho4ng'], ['xi1n']]
>>> pinyin('中心', style=pypinyin.BOPOMOFO)  # 注音风格
[['ㄓㄨㄥ'], ['ㄒㄧㄣ']]
>>> pinyin('中心', style=pypinyin.CYRILLIC)  # 俄语字母风格
[['чжун1'], ['синь1']]
>>> lazy_pinyin('中心')  # 不考虑多音字的情况
['zhong', 'xin']

命令行工具:

$ pypinyin 音乐
yīn yuè
$ pypinyin -h

FAQ

为什么没有 y, w, yu 几个声母?

声母风格(INITIALS)下,“雨”、“我”、“圆”等汉字返回空字符串,因为根据 《汉字拼音方案》 , y,w,ü (yu) 都不是声母,在某些特定韵母无声母时,才加上 y 或 w,而 ü 也有其特定规则。 —— @hotoo

如果你觉得这个给你带来了麻烦,那么也请小心一些无声母的汉字(如“啊”、“饿”、“按”、“昂”等)。 这时候你也许需要的是首字母风格(FIRST_LETTER)。 —— @hotoo

参考: hotoo/pinyin#57, #22, #27, #44

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

pypinyin-0.17.0.tar.gz (745.1 kB view details)

Uploaded Source

Built Distribution

pypinyin-0.17.0-py2.py3-none-any.whl (754.8 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file pypinyin-0.17.0.tar.gz.

File metadata

  • Download URL: pypinyin-0.17.0.tar.gz
  • Upload date:
  • Size: 745.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pypinyin-0.17.0.tar.gz
Algorithm Hash digest
SHA256 59ea38501c28f83de24c13c1a71fed9ee4c2c066ca5ca5e122d1be2da48b5321
MD5 85a4e57fa6da01f255c3c538aecf3d5a
BLAKE2b-256 3f9993fad56f980c39a1d1fe26b74208941a3a1499722a9aa8ed8fd52007cd48

See more details on using hashes here.

File details

Details for the file pypinyin-0.17.0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for pypinyin-0.17.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 248e35b31131b6b6536672ca99b23d46d430cb5d5df3ae553c4a348ab2af0a55
MD5 ad8c1240aea6c0680df6812941fe27b5
BLAKE2b-256 4e0c18db8d52a72a7e1fc1aca8591648c4adc7713ff77112d0dfafd24cf81377

See more details on using hashes here.

Supported by

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