It's a CLI tool that generates a report of interesting words for your files using Natural Language Processing library SpaCy.
Install python 3 and pip.
- LOGLEVEL: Default value is INFO.
python3 -m venv env
to create virtual environment foldersource ./env/bin/activate
to activate virtual enviromentpip install -r requirements.txt
to install all dependencespython3 -m spacy download en_core_web_sm
to download english model for spacypython3 -m pytest
to run all unit testspython3 run.py --help
for CLI detailspython3 run.py --input '[input path]' --output [output path]
to execute the tool.
python3 run.py --input \input --output \output