Metadata-Version: 2.1
Name: nlpio
Version: 0.2
Summary: Library to clean text data for NLP
Home-page: https://github.com/loveOSS/nlpio
Author: Mickaël Andrieu
Author-email: mickael.andrieu@solvolabs.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: beautifulsoup4 (>=4.11)
Requires-Dist: scikit-learn (>=1.1)
Requires-Dist: nltk (>=3.7)
Requires-Dist: spacy (>=3.3.0)

# NLP.io : the simple Python library to clean text data

## How to use it ?

``
pip install nlpio
``

```python
from nlpio import strip_html_tags

print(strip_html_tags('<h1>Hello World</h1>')) # "Hello World"
```

## Deploy upgrade on PyPi

### Build

```
python setup.py sdist bdist_wheel
twine upload dist/*
```

### Test

```
python -m pip install -e .
python

>>> from nlpio import strip_html_tags
>>> print(strip_html_tags('<h1>Hello World</h1>'))
```

## LICENCE

This works is under MIT License.


