Generate UUID v1

Generate a time-based UUID v1 using timestamp and random node ID.

Code

Utilities
import uuid
return str(uuid.uuid1())
Server

More Python Snippets