shortuid.py 218 B

1234567891011
  1. import random
  2. import time
  3. def shortuid():
  4. """ 15 cars hexadecimal uuid """
  5. base = int(time.time()) << 32
  6. rand = random.SystemRandom().getrandbits(32)
  7. return hex((base + rand))[2:-1]
  8. print(shortuid())