An ultra-fast, lightweight, zero-dependency Python implementation of the UUID v9 proposal.
Project description
UUID v9
An ultra-fast, lightweight, zero-dependency Python implementation of the UUID v9 proposal. The proposed UUID v9 format allows generating both time-based sequential and random non-sequential IDs with an optional prefix of up to 8 hexadecimal characters, an optional version identifier, an optional checksum, and sufficient randomness to avoid collisions.
Installation
Install UUID v9 from PyPI.
python3 -m pip install uuid-v9
Usage
from uuid_v9 import uuid, is_uuidv9, is_uuid
ordered_id = uuid()
prefixed_ordered_id = uuid('a1b2c3d4') # up to 8 hexadecimal characters
unordered_id = uuid('', False)
prefixed_unordered_id = uuid('a1b2c3d4', False)
ordered_id_without_version = uuid('', True, False)
ordered_id_with_checksum = uuid('', True, True, True)
const is_valid_v9 = is_uuidv9(ordered_id, true) # UUID v9 validator with checksum
const is_valid = is_uuid(ordered_id_without_version) # generic UUID validator
Command Line
python3 uuid_v9.py
python3 uuid_v9.py --prefix 'a1b2c3d4'
python3 uuid_v9.py --unordered
python3 uuid_v9.py --noversion
python3 uuid_v9.py --checksum
Note
Some UUID validators will not recognize v9 as a valid UUID even though it is. Three possible solutions are:
- Use the included validator (recommended)
- Bypass the validator (not recommended)
- Substitute the version digit for an earlier version that will pass (not recommended)
Here is the UUID v9 format: xxxxxxxx-xxxx-9xxx-xxxx-xxxxxxxxxxyy
x = prefix/timestamp/random 9 = version (optional) y = checksum (optional)
License
This project is licensed under the MIT License.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file uuid-v9-0.0.2.tar.gz
.
File metadata
- Download URL: uuid-v9-0.0.2.tar.gz
- Upload date:
- Size: 4.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0a35ca0a3cfe078d007c8b822200df98df25d082db7fac41280a464d7c719d0e |
|
MD5 | 0546844aa96223242e44fcca5b4fca1e |
|
BLAKE2b-256 | 72000683c476a60c5f4f759b212a17ac8eb718d8b189c54d0f0e4f75c35cd170 |
File details
Details for the file uuid_v9-0.0.2-py3-none-any.whl
.
File metadata
- Download URL: uuid_v9-0.0.2-py3-none-any.whl
- Upload date:
- Size: 4.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 35622e7f3f7cfba38164f97c1efe35f729267794c21daaf501ed6141ebd6b73f |
|
MD5 | 07227a8a13e9afe9db8b7536f8ff9623 |
|
BLAKE2b-256 | 6a21c4b12e77a649a6af75d391e5e97574890c4a372e414f6301ce718a3211f2 |