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
Description: # 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.
        
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
