In python how can a UUID be created with all zero values?
There is a similar question that is asked and answered for java, this question is specific to python.
In python how can a UUID be created with all zero values?
There is a similar question that is asked and answered for java, this question is specific to python.
You can use the UUID class, specifically, create it from the int 0:
import uuid
zero_uuid = uuid.UUID(int = 0)