9 lines
207 B
Python
9 lines
207 B
Python
# app/utils.py
|
|
|
|
import string
|
|
import random
|
|
|
|
def generate_short_code(length=6):
|
|
characters = string.ascii_letters + string.digits
|
|
return ''.join(random.choice(characters) for _ in range(length))
|
|
|