I am using the pyenchant package to spell check in Python. I can do this successfully for the languages ββEnglish, French, German.
In addition, I want to do this for Italian and Spanish. I studied the available dictionaries in enchantment using enchant.list_languages(), and I only got ['de_DE', 'en_AU', 'en_GB', 'en_US', 'fr_FR'].
I am looking for how to do a spell check in Italian and Spanish using the enchant package or any other packages / methods.
Thanks.
source
share