How to add dictionary to PyEnchant?

廉价感情. 提交于 2019-12-01 06:16:18

You can check that you have a language available, from a Python prompt type:

import enchant
print enchant.list_languages()

Then you need to import it, lets assume german is the one I am looking for. Then, from terminal I type:

sudo apt-get install myspell-de-de

To check it works, from a Python prompt type:

import enchant
d = enchant.Dict('de_DE')
d.check("Hello") # False
d.check("Guten") # True

For a fuller list of dictionaries see:

http://packages.ubuntu.com/precise/myspell-dictionary

http://packages.ubuntu.com/precise/aspell-dictionary

http://packages.ubuntu.com/source/precise/openoffice.org-dictionaries

http://packages.ubuntu.com/precise/ispell-dictionary

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!