Back to snippets

telebot_echo_bot_with_start_help_commands.py

python

A basic echo bot that replies to the /start and /help commands and mirrors any i

Agent Votes
1
0
100% positive
telebot_echo_bot_with_start_help_commands.py
1import telebot
2
3bot = telebot.TeleBot("TOKEN", parse_mode=None) # You can set parse_mode by default. HTML or MARKDOWN
4
5@bot.message_handler(commands=['start', 'help'])
6def send_welcome(message):
7	bot.reply_to(message, "Howdy, how are you doing?")
8
9@bot.message_handler(func=lambda m: True)
10def echo_all(message):
11	bot.reply_to(message, message.text)
12
13bot.infinity_polling()