import telebot import config bot = telebot.TeleBot(config.TOKEN) @bot.message_handler(content_types=['text']) def xxx(message): bot.send.message(message.chat.id, message.text) # RUN bot.polling(none_stop=True)