Metadata-Version: 2.1
Name: servussimplifytext
Version: 0.3
Summary: Python3 module to simplify text removing unnecesary symbols.
Home-page: https://github.com/carlosplanchon/servussimplifytext
Author: Carlos A. Planchón
Author-email: bubbledoloresuruguay2@gmail.com
License: GPL3
Download-URL: https://github.com/carlosplanchon/servussimplifytext/archive/v0.3.tar.gz
Description: # servussimplifytext
        *Python3 module to simplify text removing unnecesary symbols.*
        
        ## Installation
        ### Install with pip
        ```
        pip3 install -U servussimplifytext
        ```
        
        ## Usage
        ```
        In [1]: import servussimplifytext
        
        In [2]: servussimplifytext.simplify_text("Hola. á")
        Out[2]: 'Hola.'
        
        In [3]: servussimplifytext.simplify_text_no_symbols("Hola. á")
        Out[3]: 'Hola'
        ```
        
Keywords: simplify,text,regex
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
