vk_chat_bot/utils.py
Kirill Kirilenko 0894e3b775 Реорганизация проекта.
Обработчики разделены на несколько модулей.
2025-08-28 03:21:48 +03:00

15 lines
298 B
Python

from calendar import timegm
from pymorphy3 import MorphAnalyzer
from time import gmtime
_morph = MorphAnalyzer()
def make_word_agree_with_number(n: int, word: str) -> str:
w = _morph.parse(word)[0]
return w.make_agree_with_number(n).word
def posix_time():
return timegm(gmtime())