import telebot;
bot = telebot.TeleBot('%token%');
from telebot import apihelper
apihelper.proxy = {
'http': 'http://@177.8.216.106:8080'
}
@bot.message_handler(content_types=['text'])
def get_text_messages(message):
if message.text == "Привет":
bot.send_message(message.from_user.id, "Привет, чем я могу тебе помочь?")
bot.polling(none_stop=True)