This repository has been archived on 2026-04-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
watch-together-yandex-disk/rooms/utils.py
T
2025-07-20 00:51:55 +03:00

9 lines
176 B
Python

import random
import string
CHARACTERS = string.ascii_letters
def generate_uid(length: int = 6) -> str:
return "".join(random.choice(CHARACTERS) for _ in range(length))