def download_photo(self, bot, update, message, photo_id):
raw = photo_id
path = raw + ".jpg"
print("Download")
print(message)
file_id = update.message.photo[-1].file_id
newFile = bot.getFile(file_id)
downloaded_file = newFile.download(str(raw) + 'test.jpg')
return downloaded_file