Answer the question
In order to leave comments, you need to log in
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)
Answer the question
In order to leave comments, you need to log in
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)
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question