“Balas_Photo Bot Telegram Python” Kode Jawaban

Python Telegram Bot Kirim Gambar

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

Balas_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

Jawaban yang mirip dengan “Balas_Photo Bot Telegram Python”

Pertanyaan yang mirip dengan “Balas_Photo Bot Telegram Python”

Lebih banyak jawaban terkait untuk “Balas_Photo Bot Telegram Python” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya