I'm trying to get a list of all words in a language in the same way NLTK is providing for english. See example for english:
I already tried to use pyenchant to achieve a similar result but the documentation not being updated I have some troubles downloading an italian dictionary (MacOS).
from nltk.corpus import words
print(words.words())
Is it possible to get a similar list in french, german and italian?