Untitled
import random import string from rest_framework.response import Response ALPHANUMERIC_CHARS = string.ascii_lowercase + string.digits STRING_LENGTH = 6 def generate_random_string(chars=ALPHANUMERIC_CHARS, length=STRING_LENGTH): return "".join(random.choice(chars) for _ in range(length))