How to add dictionary to PyEnchant?

前端 未结 1 1523
野趣味
野趣味 2021-01-13 10:28

I got PyEnchant with files for many languages: en_US, en_AU, de_DE, fr_FR. Now I call list of dictionaries and see only small set: \'en\', \'en_US\', \'en

相关标签:
1条回答
  • 2021-01-13 10:35

    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

    0 讨论(0)
提交回复
热议问题