Пытался создать простого телеграм-бота через Python . Знаю, что телеграм заблокировали в России. Использовал даже прокси, но все равно не помогло. Пишет в конце : AttributeError: 'set' object has no attribute 'get'.
Сама программа :
import telebot
from telebot import apihelper
apihelper. proxy = {'https://85.132.71.82:3128'}
bot = telebot. TeleBot( ' мой токен')
@bot.message_handler(content_types=["text"])
def repeat_all_messages(message) :
bot.send_message(message.chat.id, message. text)
if__name__== '__main__' :
bot. polling(none_stop=True)