“Répondre_photo bot télégramme python” Réponses codées

Python Telegram Bot Envoyer l'image

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

Répondre_photo bot télégramme 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

Réponses similaires à “Répondre_photo bot télégramme python”

Questions similaires à “Répondre_photo bot télégramme python”

Plus de réponses similaires à “Répondre_photo bot télégramme python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code