Concept Flow - How Flask processes HTTP requests
Client sends HTTP request
Flask server receives request
Flask matches URL to route
Calls associated view function
View function processes data
View function returns response
Flask sends HTTP response back to client
This flow shows how Flask takes an HTTP request, finds the right code to run, runs it, and sends back a response.