pinyin.py - Python汉字转拼音模块


GPL
跨平台
Python

软件简介

汉字转拼音,自带词库 With Python

from pinyin import PinYin

test = PinYin()
test.load_word()
test.hanzi2pinyin(string='钓鱼岛是中国的')
//Out:['diao', 'yu', 'dao', 'shi', 'zhong', 'guo', 'de']
test.hanzi2pinyin_split(string=string, split="-")
//diao-yu-dao-shi-zhong-guo-de