Загрузка данных


import telebot

Token = '8334554541:AAHBMUKw_4eraSTIwad0f9HLblMNWzGuP8M'

bot = telebot.TeleBot(Token)

@bot.message_handler(commands = ['start', 'info'])
def send_welcome(message):
    bot.reply_to(message, 'Привет.\nЯ просто тестовый бот, и всё)))')



@bot.message_handler(content_types= ['text'])
def send_answer(message):
    if message.text in 'Привет привет Пр пр Хай хай':
        bot.send_message(message.chat.id, f'Привет, {message.chat.first_name}, ''')
    if message.text == 'Скинь фото':
      bot.send_photo(message.chat.id, 'https://img.magnific.com/free-photo/view-beautiful-persian-domestic-cat_23-2151773821.jpg?semt=ais_hybrid&w=740&q=80')
    bot.send_message(message.chat.id, message.text)
bot.infinity_polling()