You will find python scripts that allow you to call the NLP++ engine in a variety of ways.
- nlpengine.py: the NLPEngine python class that calls nlp.exe to run NLP++ text analyzers
- nlpengine-example.py: an example using the NLPEngine python class in nlpengine.py.
- nlpplus.py: a python script that uses the native NLPPlus python package.
- deaccent.py: a script to deaccent a file (does not call NLP++).
This is a simple class that calls the NLP Engine as a command line executable. This is suitable for tasks that are not meant for production.
- nlpengine.py: the NLPEngine python class that calls nlp.exe to run NLP++ text analyzers
- nlpengine-example.py: an example using the NLPEngine python class in nlpengine.py.
For this python class to work, you must have the NLP Engine command line executable somewhere on your system. These are found in separate repositories for each operating system:
The NLPPlus Python Package is released and can be found at https://pypi.org/project/NLPPlus/, or you can install it via pip:
pip install NLPPlus
Here you will find a script for using the NLPPlus Python Package. This is a native C++ package for Python. The Python script nlpplus.py explains how to download, install, and use the package.
- nlpplus.py: a python script that uses the native NLPPlus python package.