I'm using FastAPI to receive an image, process it and then return the image as a FileResponse.
But the returned file is a temporary one that need to be deleted after the endpoint return it.
@app.post("/send")
async def send(imagem_base64: str = Form(...)):
# Convert to a Pillow image
image = base64_to_image(imagem_base64)
temp_file = tempfile.mkstemp(suffix = '.jpeg')
image.save(temp_file, dpi=(600, 600), format='JPEG', subsampling=0, quality=85)
return FileResponse(temp_file)
# I need to remove my file after return it
os.remove(temp_file)
How can I delete the file after return it ?