[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

RFS: python-enchant -- A spellchecking library for Python



I have packaged PyEnchant for my purpose, and it would be nice
if some of you can sponsor it.

Upstream homepage: http://pyenchant.sourceforge.net/

Enchant is a spellchecking library developed in AbiWord, that
can use any of aspell, ispell, myspell backend, and can also
plugin custom backend.

Example usage:

>>> import enchant
>>> d = enchant.Dict('en_US')
>>> d.check('star')
True
>>> d.check('ster')
False
>>> import enchant.checker
>>> c = enchant.checker.SpellChecker('en_US')
>>> c.set_text('It also probides some higher-level functionality')
>>> for err in c:
...     print err.wordpos, err.word
...
8 probides
>>>

Version 1.1.1 released 2005-03-23, and I updated my package from
1.1.0. ITP bug is http://bugs.debian.org/299783.

You can download source from:
deb-src http://mentors.debian.net/debian unstable main

pbuilder and lintian clean.

Seo Sanghyeon



Reply to: