1
0
mirror of https://github.com/elisspace/core.git synced 2026-08-30 08:02:02 +00:00
Files
core/homeassistant/util/uuid.py

13 lines
260 B
Python

"""Helpers to generate uuids."""
from random import getrandbits
def random_uuid_hex() -> str:
"""Generate a random UUID hex.
This uuid should not be used for cryptographically secure
operations.
"""
return "%032x" % getrandbits(32 * 4)