Boxtitoli_Django/random_id/utils.py

8 lines
272 B
Python

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))