汉语拼音转换工具
Project description
汉语拼音转换工具(Python 版)
将汉语转为拼音。可以用于汉字注音、排序、检索。基于 pinyinjs 开发。
Documentation: http://pypinyin.rtfd.org
Free software: MIT license
Python version: 2.6, 2.7
Installation
To install pypinyin, simply:
$ pip install pypinyin
Basic Usage
>>> from pypinyin import pinyin
>>> import pypinyin
>>> pinyin(u'中心')
[[u'zh\u014dng'], [u'x\u012bn']]
>>> pinyin(u'中心', heteronym=True) # 启用多音字模式
[[u'zh\u014dng', u'zh\xf2ng'], [u'x\u012bn']]
>>> pinyin(u'中心', pypinyin.STYLE_INITIALS) # 设置拼音风格
[['zh'], ['x']]
Changelog
0.2.0 (2013-09-22)
完善对中英文混合字符串的支持:
>> pypinyin.pinyin(u'你好abc') [[u'n\u01d0'], [u'h\u01ceo'], [u'abc']]
0.1.0 (2013-09-21)
Initial Release
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.2.0.zip
(604.6 kB
view details)
File details
Details for the file pypinyin-0.2.0.zip
.
File metadata
- Download URL: pypinyin-0.2.0.zip
- Upload date:
- Size: 604.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c44c102752dccaa2a78fb3d2dbb8ddb8008eb3bbf22f58e0be9f83c039e7e30c |
|
MD5 | 0806e8a52d21f6699b7588d106974a05 |
|
BLAKE2b-256 | 58aca63076dfb21a978c8f7d43507d35e1dce2f1cf2cf95fd5fbb355b8a52021 |