Guest User

Untitled

a guest
Feb 24th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. import string
  2. import random
  3.  
  4.  
  5. def id_generator(size=64, chars=string.ascii_uppercase + string.digits):
  6. return ''.join(random.choice(chars) for _ in range(size))
Add Comment
Please, Sign In to add comment