Metadata-Version: 2.1
Name: listcompress
Version: 0.1
Summary: Python3 module to compress a list while maintaining order.
Home-page: https://github.com/carlosplanchon/listcompress
Author: Carlos A. Planchón
Author-email: bubbledoloresuruguay2@gmail.com
License: GPL3
Download-URL: https://github.com/carlosplanchon/listcompress/archive/v0.1.tar.gz
Description: # listcompress
        *Python3 module to compress a list while maintaining order.*
        
        ## Installation
        ### Install with pip
        ```
        pip3 install -U listcompress
        ```
        
        ## Usage
        ```
        In [1]: import listcompress
        
        In [2]: listcompress.compress_list([1, 6, 4])
                                                          
        Out[2]: [0, 2, 1]
        ```
        
Keywords: list,compress
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
