Source Code:
(back to article)
import uuid # Generate a UUID based on the host ID and current time time_based_uuid = uuid.uuid1() # Print the UUID print(time_based_uuid)
Result:
Report an issue