import requests
def send_photo_telegram():
files = {'photo': open('sity.jpg', 'rb')}
token = "ТОКЕН БОТА"
chat_id = "ЧАТ ID" # если у вас группа то будет так chat_id = "-1009999999"
r = requests.post("https://api.telegram.org/bot"+token+"/sendPhoto?chat_id=" + chat_id, files=files)
if r.status_code != 200:
raise Exception("post_text error")
send_photo_telegram()