Slide 9
Slide 9 text
9
View Function
Request Object created
Application Context pushed
Request Context pushed
Session Opened
URL Matching
`before_request`
`url_value_preprocessor`
● The Request Context is pushed onto
the stack:
○ keeps track of the request-level data
(URL, HTTP method, headers,
request data, session, etc.)
● This step makes the following objects
available:
○ `request` - proxy to the request data
passed in from the WSGI server
○ `session` - data for storing data from
one request to another (i.e. a session)
Before a View Function: Step 3