Golang library for the community maintained Chinese-English dictionary (CC-CEDICT), published by MDBG.
The basic format of a CEDICT entry is:
Traditional Simplified [pin1 yin1] /American English equivalent 1/equivalent 2/
漢字 汉字 [han4 zi4] /Chinese character/CL:個|个/
First grab the latest version of the package,
go get -u github.com/jcramb/cedict
Next, include it in your application:
import "github.com/jcramb/cedict"
d := cedict.New()
fmt.Printf("%s\n", cedict.PinyinTones(d.HanziToPinyin("你好,世界!")))
- Fork the repo
- Clone your fork (
git clone https://github.com/<username>/cedict && cd cedict
) - Create your own branch (
git checkout -b my-patch
) - Make changes and add them (
git add .
) - Commit your changes (
git commit -m 'Fixed #123'
) - Push to the branch (
git push origin my-patch
) - Create new pull request
Copyright 2020 John Cramb. All rights reserved.
Licensed under the MIT License. See LICENSE in the project root for license information.