2020-08-24 10:21:30 -05:00
|
|
|
"""Helpers to generate uuids."""
|
|
|
|
|
2020-10-07 09:37:01 -05:00
|
|
|
from random import getrandbits
|
2020-08-24 10:21:30 -05:00
|
|
|
|
|
|
|
|
2020-10-07 09:37:01 -05:00
|
|
|
def random_uuid_hex() -> str:
|
|
|
|
"""Generate a random UUID hex.
|
2020-08-24 10:21:30 -05:00
|
|
|
|
2020-10-07 09:37:01 -05:00
|
|
|
This uuid should not be used for cryptographically secure
|
|
|
|
operations.
|
2020-08-24 10:21:30 -05:00
|
|
|
"""
|
2024-04-26 08:48:32 +02:00
|
|
|
return f"{getrandbits(32 * 4):032x}"
|