Prepare to bot creation #1

This commit is contained in:
Aleksei Krugliak 2022-04-01 23:15:05 +04:00
parent 9a05d542e2
commit 017c278b44
5 changed files with 4 additions and 11 deletions

View File

@ -1,6 +0,0 @@
# ЭТО ПРИМЕР ФАЙЛА .env !! ВАМ НАДО ЭТОТ ФАЙЛ ПЕРЕИМЕНОВАТЬ И ВСТАВИТЬ ТУДА ЗНАЧЕНИЯ.
# ЭТИ КОММЕНТАРИИ НАДО УДАЛИТЬ!
ADMINS=12345678,12345677,12345676
BOT_TOKEN=123452345243:Asdfasdfasf
ip=localhost

View File

@ -17,7 +17,6 @@ async def errors_handler(update, exception):
:return: stdout logging
"""
if isinstance(exception, MessageNotModified):
logging.exception('Message is not modified')
# do something here?

View File

@ -1,2 +1,2 @@
aiogram<3.0
environs~=8.0.0
environs==9.5.0

View File

@ -8,7 +8,7 @@ from data.config import ADMINS
async def on_startup_notify(dp: Dispatcher):
for admin in ADMINS:
try:
await dp.bot.send_message(admin, "Бот Запущен")
await dp.bot.send_message(admin, "Voodoo21-expense started")
except Exception as err:
logging.exception(err)

View File

@ -4,7 +4,7 @@ from aiogram import types
async def set_default_commands(dp):
await dp.bot.set_my_commands(
[
types.BotCommand("start", "Запустить бота"),
types.BotCommand("help", "Вывести справку"),
types.BotCommand("start", "Start bot."),
types.BotCommand("help", "Help."),
]
)