Hunspell is a spell checker.

from org.keyphrene import hunspell
 
spell = hunspell.Hunspell("./fr_FR.aff","./fr_FR.dic")
word = "copi"
print spell.spell(word)
print spell.suggest(word)