هى باكيج بتسمحلنا بإستخدام enchant فى بايثون
http://www.abisource.com/projects/enchant/الإستخدام مباشر
>>> import enchant as e
>>> e
<module 'enchant' from '/usr/lib/python2.6/site-packages/enchant/__init__.pyc'>
>>> endict=e.Dict("en_US")
هنا نشوف هل الكلمة موجودة فى القاموس او لأ ؟
>>> endict.check("hello")
True
>>> endict.check("helo")
False
هنا بنشوف الإقتراحات للكلمة الخاطئة
>>> endict.suggest("helo")
['hole', 'help', 'helot', 'hello', 'halo', 'hero', 'hell', 'held', 'helm', 'he lo', 'he-lo']
فى امثلة تحت checker ل GtkSpellCheckerDialog و wxSpellCheckerDialog
للمزيد استخدم help
http://github.com/rfk/pyenchant