Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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'))
 
PREVIOUS NEXT
Tagged: #bot #telegram #python
ADD COMMENT
Topic
Name
4+3 =