backend/image_markuper/utils/generators.py

8 lines
219 B
Python
Raw Normal View History

2022-10-26 23:22:04 +03:00
import random
import string
def generate_charset(length: int) -> str:
"""Generate a random string of characters of a given length."""
return "".join(random.choice(string.ascii_letters) for _ in range(length))