“Respuesta_Photo Bot Telegram Python” Código de respuesta

Python Telegram Bot Enviar imagen

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

Respuesta_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

Respuestas similares a “Respuesta_Photo Bot Telegram Python”

Preguntas similares a “Respuesta_Photo Bot Telegram Python”

Más respuestas relacionadas con “Respuesta_Photo Bot Telegram Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código