надо чтобы телеграмм бот принимал на сервер больше одной фотографии и надо 2 изменении в них запихнуть ссылку на эти 2 фотографии
@bot.message_handler(content_types=['photo'])
def handle_photo(message):
raw = message.photo[2].file_id
name = raw+".jpg"
file_info = bot.get_file(raw)
downloaded_file = bot.download_file(file_info.file_path)
with open(name,'wb') as new_file:
new_file.write(downloaded_file)
print(name)
if name==name:
print("jhyjgjy")
raw2 = message.photo[2].file_id
name2 = raw2+".jpg"
file_info = bot.get_file(raw)
downloaded_file = bot.download_file(file_info.file_path)
with open(name2,'wb') as new_file:
new_file.write(downloaded_file)
print(name2)
print(name)