7 lines
117 B
Python
7 lines
117 B
Python
import random
|
|
import time
|
|
|
|
|
|
def get_uid():
|
|
return hex(int(time.time() * 10 ** 7) + random.randint(0, 10000))[2:]
|