Metadata-Version: 1.1
Name: python-ordered-uuid
Version: 1.3.5
Summary: A python implementation of Ordered UUID.
Home-page: https://github.com/pawl/python-ordered-uuid
Author: Paul Brown
Author-email: paul90brown+pypi@gmail.com
License: UNKNOWN
Description: python-ordered-uuid
        ===================
        
        Overrides Python's UUID class to implement "Ordered UUID".
        
        For more info about "Ordered UUID" see:
        https://www.percona.com/blog/2014/12/19/store-uuid-optimized-way/
        
        Supports both Python 2 & 3.
        
        Usage
        =====
        
        ::
        
            from ordered_uuid import OrderedUUID
        
            hex_string = 'cdef89ab012345670123456789abcdef'
            OrderedUUID(hex_string)
        
            some_bytes = b'\xcd\xef\x89\xab\x01\x23\x45\x67\x01\x23\x45\x67\x89\xab\xcd\xef'
            OrderedUUID(bytes=some_bytes)
        
            fields = (0x12345678, 0x1234, 0x5678, 0x12, 0x34, 0x567812345678)
            OrderedUUID(fields=fields)
        
        Installation
        ============
        
        ::
        
            pip install python-ordered-uuid
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
