An always up-to-date copy of the CC-CEDICT, a Chinese to English word dictionary with pronunciation in pinyin for the Chinese characters.
The original dictionary is available as a plain text file. In addition to that, this repository is a Go module, which allows for easy consumption of the dictionary bytes from a Go program.
package main
import (
"os"
"github.com/rhcarvalho/cedict"
)
func main() {
os.Stdout.Write(append(cedict.Bytes[:200], []byte("...\n")...))
}
The dictionary is automatically updated daily (if there are changes upstream).
The original CC-CEDICT by MDBG is licensed under CC BY-SA 4.0.
The remaining content of this repository is licensed under the Apache License 2.0.