Metadata-Version: 1.1
Name: uniqtoken
Version: 0.1.3
Summary: Simple generator of unique tokens.
Home-page: https://github.com/denis-ryzhkov/uniqtoken
Author: Denis Ryzhkov
Author-email: denisr@denisr.com
License: MIT
Description: 
        Usage::
        
            pip install uniqtoken
            from uniqtoken import uniqtoken
        
            token1 = uniqtoken()
            token2 = uniqtoken()
            assert token1 != token2
        
        * Starts with a sequence random enough to be indexed efficiently when token is used as a hash key.
        * This random sequence is long enough to be hard to guess.
        * Ends with explicit timestamp with precision about 0.01 seconds (system dependent) to be more unique.
        * Is more than 3x faster than standard ``uuid.uuid4()`` - see tests in `uniqtoken.py:test() <https://github.com/denis-ryzhkov/uniqtoken/blob/master/uniqtoken.py#L41>`_.
        * Is ready to be used as a fixed length string token containing exactly 64 safe hex digits.
        
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Software Development :: Libraries :: Python Modules
