utilities.py (123B)
1 from random import choice 2 3 4 def generate_token(chars: str, size: int): 5 return ''.join(choice(chars) for _ in range(size))