Skip to content

kemingy/ime

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Chinese Pinyin Input Method Engine

Build Status

Yet another input method engine.

You can download data from Google code(hslinuxextra).

Tutorial

>> from ime.engine import Engine
>> e = Engine()

>> e.search('daima')
[(5, Word(han='代码', freq=6955)),
 (3, Word(han='带', freq=7438)),
 (3, Word(han='待', freq=6568)),
 ......]

>> e.search('bitebi')
[(4, Word(han='比特', freq=4210)),
 (4, Word(han='彼特', freq=912)),
 (2, Word(han='比', freq=7543)),
 ......]

TODO

  • word(full match)
  • candidate(sort by 1. length 2. frequence)
  • sentence(try to find correct words)
  • correct misspelling(fuzzy spell)
  • search with initials
  • adjust frequence of word dynamically

About

Yet another Chinese input method engine.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages