blag
Results
281
comments of
blag
```python >>> import uuid >>> from uuid_utils import uuid7 >>> uuid.UUID(str(uuid7())) UUID('0196d5e1-fa88-7993-a921-80946d50987f') ``` For Python 3.14+, you can probably just do this: ```python uuid.UUID(uuid7(), version=7) ```