Python Flask Intentional Empty Response

You are responding to a request, your HTTP server must return something. The HTTP ’empty response’ response is 204 No Content:

return ('', 204)

Note that returning a file to the browser is not an empty response, just different from a HTML response.

Leave a Comment