import telebot
from telebot import types
bot = telebot.TeleBot("")
@bot.message_handler(content_types=['photo'])
def get_photo(message):
markup = types.InlineKeyboardMarkup()
markup.add(types.InlineKeyboardButton('Попить пивка', url="https://www.youtube.com"))
bot.send_message(message.chat.id, 'Красивая фотография!', reply_markup=markup)
bot.polling(none_stop=True)