import telebot

token='7584305942:AAGNybLrgUeTX7vOXs6P-Ry4qLpOA2UBbiU'
bot = telebot.TeleBot(token)


@bot.message_handler(commands=['start'])
def start(message):
    bot.send_message(message.chat.id,"По техническим причинам бот временно недоступен❌\nОбращайтесь к @ferno_mr")

while True:
    try:
        bot.polling(none_stop=True)
    except BaseException as e:
        print(e)