This commit is contained in:
yumoqing 2022-02-24 21:55:20 +08:00
parent aa578c3980
commit 7a39ed5986
2 changed files with 5 additions and 15 deletions

View File

@ -1,20 +1,9 @@
import uuid
node = None
from nanoid import generate
def setNode(n='ff001122334455'):
global node
if len(n)>12:
return
for c in n:
if c not in ['0','1','2','3','4','5','6','7','8','9','a','b','c','d','e','f']:
return
node = eval('0x' + n + 'L')
pass
def getID():
global node
if node is None:
node = uuid.getnode()
u = uuid.uuid1(node)
return u.hex
def getID(size=21):
return generate(size=size)

View File

@ -1,5 +1,6 @@
xlrd
xlwt
naroid
psutil
ujson
numpy