Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 412 Bytes

README.md

File metadata and controls

26 lines (18 loc) · 412 Bytes

Spanish lemmatizer

Read data/LICENSE first

Install it

pip install es-lemmatizer

How to use it:

from es_lemmatizer import lemmatize
import spacy
nlp = spacy.load("es")
nlp.add_pipe(lemmatize, after="tagger")

How to publish:

rm -rf dist
python setup.py clean --all
python setup.py sdist bdist_wheel
twine upload --repository-url https://test.pypi.org/legacy/ --verbose dist/*