“reply_photo bot telegram python” Ответ

Python Telegram Bot Отправить изображение

If you have local image path:

bot.send_photo(chat_id, photo=open('path', 'rb'))
If you have url of image from internet:

bot.send_photo(chat_id, 'your URl')
Santino

reply_photo bot telegram python

# al usar un bot mediante telegram.ext, creamos un metodo que reciba el Update
# para poder responderle con una foto
def echo(update:Update, context:CallbackContext):
	update.message.reply_photo(photo=open('ruta_foto', 'rb'))
Pep3 Márquez

Ответы похожие на “reply_photo bot telegram python”

Вопросы похожие на “reply_photo bot telegram python”

Больше похожих ответов на “reply_photo bot telegram python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования