2020-08-24 15:21:30 +00:00
|
|
|
"""Helpers to generate uuids."""
|
|
|
|
|
2020-10-07 14:37:01 +00:00
|
|
|
from random import getrandbits
|
2020-08-24 15:21:30 +00:00
|
|
|
|
|
|
|
|
2020-10-07 14:37:01 +00:00
|
|
|
def random_uuid_hex() -> str:
|
|
|
|
"""Generate a random UUID hex.
|
2020-08-24 15:21:30 +00:00
|
|
|
|
2020-10-07 14:37:01 +00:00
|
|
|
This uuid should not be used for cryptographically secure
|
|
|
|
operations.
|
2020-08-24 15:21:30 +00:00
|
|
|
"""
|
2020-10-07 14:37:01 +00:00
|
|
|
return "%032x" % getrandbits(32 * 4)
|