Metadata-Version: 2.1
Name: nlpcleaner
Version: 0.1.6
Summary: Clean and prepare text for modeling with machine learning
Home-page: https://github.com/giovannelli/nlpcleaner
Author: Duccio Giovannelli
Author-email: giovannelli@extendi.it
License: MIT
Description: # Nlpcleaner
        Clean and prepare text for modeling with machine learning.
        - lower all
        - strip all
        - remove numbers
        - remove symbols
        - remove stopwords by detected language
        - lemming or stemming
        
        ## Usage
        
        ```
        from nlpcleaner import Text
        Text(txt).clean()
        ```
        
        ## Tests
        
        ```
        pip install .
        python setup.py test
        ```
        
        ## Push on PyPi
        
        ```
        python setup.py sdist
        pip install twine
        twine upload dist/*
        ```
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
