@
@
@aknert2019-05-17 17:12:45
Python
@aknert, 2019-05-17 17:12:45

How to make a reaction to any command?

a = ['список', 'команд']

@bot.message_handler(commands=['любая команда'])
def step(message):
   for x in a:
      if message.text == x:
         bot.send_message(message.from_user.id, x)

if __name__ == "__main__":
   bot.polling(none_stop=True)

how to make the bot react to any command, and only then, depending on which command, perform different actions?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
T
tsarevfs, 2019-05-17
@tsarevfs

As I understand it, you are using pyTelegramBotAPI https://github.com/eternnoir/pyTelegramBotAPI#a-si...
The second example there allows you to receive all messages:

@bot.message_handler(func=lambda m: True)
def echo_all(message):
  bot.reply_to(message, message.text)

Instead of commands, it uses func, which checks if this message is suitable for this handler.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question