Metadata-Version: 2.1
Name: p2pp
Version: 0.0.6
Summary: Convert word from present tense to present participle tense
Home-page: https://github.com/wenliangdai/p2pp
Author: Wenliang Dai
Author-email: wenliang.dai.1995@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=2.7
Description-Content-Type: text/markdown

# p2pp

[![](https://img.shields.io/badge/python-2.7+-blue.svg?style=for-the-badge)](https://www.python.org/downloads/)
[![PyPI](https://img.shields.io/pypi/v/p2pp?style=for-the-badge)](https://pypi.org/project/p2pp/0.0.5/)
[![PyPI - License](https://img.shields.io/pypi/l/p2pp?style=for-the-badge)](https://opensource.org/licenses/MIT)

A light weight library that can help you to convert a word from present tense to present participle tense.

## Install

```bash
pip install p2pp
```

## Example
```python
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.


