Boxtitoli_Django/random_id/utils.py

8 lines
272 B
Python
Raw Normal View History

2020-05-07 13:12:49 +00:00
import random
import string
ALPHANUMERIC_CHARS = string.ascii_lowercase + string.ascii_uppercase + string.digits
STRING_LENGTH = 11
def generate_random_string(chars=ALPHANUMERIC_CHARS,length=STRING_LENGTH):
return "".join(random.choice(chars) for _ in range(length))