Metadata-Version: 1.1
Name: num-shorty
Version: 1.0.1
Summary: Converts an integer to a hexdigest like string - except not 16 length but provided alphabet length
Home-page: UNKNOWN
Author: Matouš Höschl
Author-email: UNKNOWN
License: MIT
Download-URL: https://github.com/matousgit/num_shorty/archive/1.0.0.tar.gz
Description: matousgit/num_shorty
        ====================
        
        .. image:: https://img.shields.io/pypi/v/num-shorty.svg
            :target: https://pypi.org/project/num-shorty/
            :alt: Latest Version
        
        ``num_shorty`` converts an integer to a hexdigest like string - except not 16 length but provided alphabet length
        
        **Example**:
        
        .. code-block:: pycon
        
            >>> from import num_shorty
            >>> num_shorty.short(123456789)
            '8m0Kx'
            >>> num_shorty.expand('8m0Kx')
            123456789
        
        **You can implement your own alphabet set**
        
        .. code-block:: pycon
        
            >>> from import num_shorty
            >>> num_shorty.short(123456789, alphabet='abcdefgABCDEFG-*!:_')
            'cE!geD-'
            >>> num_shorty.expand('cE!geD-', alphabet='abcdefgABCDEFG-*!:_')
            123456789
        
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.7
