p2pp

Convert word from present tense to present participle tense


Keywords
nlp, preprocessing, python
License
MIT
Install
pip install p2pp==0.0.6

Documentation

p2pp

PyPI PyPI - Wheel PyPI - License

A light weight library that can help you to convert a word from present tense to present participle tense, i.e. the "ing" form.

Install

pip install p2pp

Example

from p2pp import p2pp

words = ['go', 'give', 'be', 'lie', 'hit']
for word in words:
    print(p2pp(word))

Output:

going
giving
being
lying
hitting

Requirements

Support both Python2 and Python3.

License

MIT.