This package extends the built-in uuid
module to include UUID v7 and v6.
pip install uuid-v7
from uuid_v7 import uuidv7, uuidv6
print(uuidv7())
print(uuidv6())
$ python
>>> from uuid_v7 import uuidv7, uuidv6
>>> print(uuidv7())
>>> print(uuidv6())
Read the CONTRIBUTING.md file.
- @oittaa The author of UUID v7 and v6 implementation in Python. Add UUIDv6 and UUIDv7
- @rochacbruno for the project template