ULID (Universally Unique Lexicographically Sortable Identifier) encoding and decoding for Python.
- Python 2.7 and 3.x compatible
- Supports binary ULIDs
- Supports bidirectional conversion of base32 ULIDs
- Supports expressing ULIDs as UUIDs
- Use
ulid2.generate_binary_ulid()
to generate a raw binary ULID - Use
ulid2.generate_ulid_as_uuid()
to generate an ULID as anuuid.UUID
- Use
ulid2.generate_ulid_as_base32()
to generate an ULID as ASCII
- Use
ulid2.get_ulid_time(ulid)
to get the time from an ULID (in any format)
- Use
ulid2.ulid_to_base32(ulid)
to convert an ULID to its ASCII representation - Use
ulid2.ulid_to_uuid(ulid)
to convert an ULID to its UUID representation - Use
ulid2.ulid_to_binary(ulid)
to convert an ULID to its binary representation
- Use
ulid2.encode_ulid_base32(binary)
to convert 16 bytes to 26 ASCII characters - Use
ulid2.decode_ulid_base32(ascii)
to convert 26 ASCII characters to 16 bytes
ulid
is already taken by mdipierro's implementation. :)
- NUlid (MIT License)
- oklog/ulid