@bot.message_handler(content_types=['photo'])
def get_photo_text(message):
photo = message.photo[-1].file_id
bot.send_photo(message.chat.id, photo, message.caption, caption_entities=message.caption_entities )
@bot.message_handler(content_types=['photo'])
def get_photo_text(message):
photo = message.photo[-1].file_id
bot.send_photo(message.chat.id, photo, message.caption_entities)
@bot.message_handler(content_types=['photo'])
def get_photo_text(message):
photo = message.photo[-1].file_id
bot.send_photo(message.chat.id, photo, '<b>message.caption</b>', parse_mode = 'html')
@bot.message_handler(commands=['start'])
def start(message):
bot.send_message(CHAT_ID, 'ваше сообщение')
Спасибо большое