Answers for "download photo telegram python bot"

2

python telegram bot send 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')
Posted by: Guest on March-16-2021

Code answers related to "download photo telegram python bot"

Python Answers by Framework

Browse Popular Code Answers by Language