mirror of
https://github.com/smallevilbeast/ntchat.git
synced 2025-05-23 02:26:11 +08:00
7 lines
130 B
Python
7 lines
130 B
Python
import uuid
|
|
import time
|
|
|
|
|
|
def generate_guid(prefix=''):
|
|
return str(uuid.uuid3(uuid.NAMESPACE_URL, prefix + str(time.time())))
|