3
Size: a a a
3
3
3
3
OG
import telebot
token = '4660699:AAG03nHVejfVCRwypg9gWyJmxbb20I5RZs'
bot = telebot.TeleBot(token)
@bot.message_handler(commands=['start', 'help'])
def send_welcome(message):
bot.reply_to(message, "Test bot answer")
@bot.message_handler(func=lambda m: True)
def echo_all(message):
bot.reply_to(message, message.text)
bot.polling()
3
3
3