from aiogram import Bot, Dispatcher, executor, types
TOKEN = "" # токен бота
bot = Bot(TOKEN)
dp = Dispatcher(bot)
help_command = """
/help - список комманд
/start - начать работу с ботом
/info - о боте
"""
@dp.message_handler(commands=['help'])
async def help_command(messange: types.Message):
await messange.reply(text=help_command)
if __name__ == '__main__':
executor.start_polling(dp)
<function help_command at 0x10da9c040>
from aiogram import Bot, Dispatcher, executor, types
TOKEN = "" # токен бота
bot = Bot(TOKEN)
dp = Dispatcher(bot)
help_text = """
/help - список комманд
/start - начать работу с ботом
/info - о боте
"""
@dp.message_handler(commands=['help'])
async def help_command(messange: types.Message):
await messange.reply(text=help_text)
if __name__ == '__main__':
executor.start_polling(dp)