import telebot
import config
from telebot import types
bot = telebot.TeleBot(config.token)
#отслеживаю команды через декоратор
@bot.message_handler(commands=['start'])
#функция принимает команду(можно в будещем сообщение)
def start(message):
markup = types.ReplyKeyboardMarkup(resize_keyboard=True)
button1 = types.KeyboardButton('Отправить цитату')
button2 = types.KeyboardButton('Отправить фото')
markup.add(button1,button2)
bot.send_message(message.chat.id, 'Рад тебя видеть, дорогой!', reply_markup=markup)
@bot.message_handler(content_types=['photo'])
def get_user_photo(message):
bot.send_message(message.chat.id, 'Люблю тебя!')
@bot.message_handler(content_types=["text"])
def messages(message):
bot.send_message(chat_id='мой айди', text=message.text)
if __name__ == '__main__':
bot.polling(none_stop=True)