Concept Flow - WSGI concept overview
Client sends HTTP request
WSGI Server receives request
WSGI Server calls Flask app callable
Flask app processes request
Flask app returns status, headers, body
WSGI Server sends HTTP response back to client
This flow shows how a WSGI server acts as a middleman between the client and the Flask app, passing requests and responses.