Metadata-Version: 2.1
Name: ansistrip
Version: 0.1
Summary: ASCII Screen Splash for SHYCD software.
Home-page: https://github.com/carlosplanchon/ansistrip
Author: Carlos A. Planchón
Author-email: bubbledoloresuruguay2@gmail.com
License: GPL3
Download-URL: https://github.com/carlosplanchon/ansistrip/archive/v0.1.tar.gz
Description: # Ansistrip
        *Module to strip ANSI Escape codes from a string.*
        
        ## Installation
        ### Install with pip
        ```
        pip3 install -U ansistrip
        ```
        
        ## Usage
        ```
        In [1]: import ansistrip
        
        In [2]: text =  "\x1b[1m\x1b[38;5;10mtest\x1b0m"
        
        In [3]: ansistrip.ansi_strip(text)
        
        Out[3]: 'test'
        ```
        
Keywords: ascii,ansi,strip,VT100
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
