Add email column

This commit is contained in:
Michał Gdula 2023-06-13 17:51:57 +03:00
parent 3d9b387ea8
commit c299450d1c
5 changed files with 36 additions and 8 deletions

View file

@ -7,6 +7,7 @@ GAME_DIFFICULTIES = [0, 1, 2, 3, 4]
USER_MAX_TOKENS = 3
USER_REGEX = r"\b[A-Za-z0-9._-]+\b"
USER_EMAIL_REGEX = r"[^@]+@[^@]+\.[^@]+"
MAX_TOP_SCORES = 15
MAX_SEARCH_RESULTS = 5