Concept Flow - Route with dynamic parameters
Client sends URL request
Flask checks route patterns
Match route with dynamic parameter?
No→404 Not Found
Yes
Extract parameter value from URL
Call view function with parameter
Return response with parameter used
Flask receives a URL, matches it to a route pattern with a dynamic part, extracts that part, and passes it to the function to create a response.