Spacy Frenc Hlemmatizer
pip3 install spacy
python3 -m spacy download fr_core_news_md
import spacy
nlp = spacy.load('fr_core_news_md')
doc = nlp(u"voudrais non animaux yeux dors couvre.")
for token in doc:
print(token, token.lemma_)
Maxwell