Generate UUID v3

Generate a name-based UUID v3 using MD5 hashing of namespace and name.

Code

Utilities
import uuid
return str(uuid.uuid3(uuid.UUID(namespace), name))

Parameters

Namespace UUID (use DNS, URL, OID, or X500 namespace).

Name to hash within the namespace.

Server

More Python Snippets