Hi,
Would it make sense to add a function to generate a random UUID4 (as a
string) in secrets?
The current implement in uuid.py of CPython 3.6 already uses os.urandom():
def uuid4():
"""Generate a random UUID."""
return UUID(bytes=os.urandom(16), version=4)
Victor