Skip to main content

A python implementation of Ordered UUID.

Project 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

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page