Python uuid Functions
EditRocket provides the following information on uuid functions in the Python source code builder.
getnode() - Get the hardware address as a 48-bit positive integer.
uuid1([node[, clock_seq]]) - Generate a UUID from a host ID, sequence number, and the current time.
uuid3(namespace, name) - Generate a UUID based on the MD5 hash of a namespace identifier (which is a UUID) and a name (which is a string).
uuid4() - Generate a random UUID.
uuid5(namespace, name) - Generate a UUID based on the SHA-1 hash of a namespace identifier (which is a UUID) and a name (which is a string).