“Reply_photo Bot Telegram Python” Code-Antworten

Python Telegram Bot Senden Sie Bild

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

Ähnliche Antworten wie “Reply_photo Bot Telegram Python”

Fragen ähnlich wie “Reply_photo Bot Telegram Python”

Weitere verwandte Antworten zu “Reply_photo Bot Telegram Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen