Prepare to bot creation #1
This commit is contained in:
parent
9a05d542e2
commit
017c278b44
|
@ -1,6 +0,0 @@
|
|||
# ЭТО ПРИМЕР ФАЙЛА .env !! ВАМ НАДО ЭТОТ ФАЙЛ ПЕРЕИМЕНОВАТЬ И ВСТАВИТЬ ТУДА ЗНАЧЕНИЯ.
|
||||
# ЭТИ КОММЕНТАРИИ НАДО УДАЛИТЬ!
|
||||
|
||||
ADMINS=12345678,12345677,12345676
|
||||
BOT_TOKEN=123452345243:Asdfasdfasf
|
||||
ip=localhost
|
|
@ -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?
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
aiogram<3.0
|
||||
environs~=8.0.0
|
||||
environs==9.5.0
|
|
@ -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)
|
||||
|
|
|
@ -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."),
|
||||
]
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue