Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

flask new response style with `make_response`

def index():
    response = make_response(render_template('index.html', foo=42))
    response.headers['X-Parachutes'] = 'parachutes are cool'
    return response
Source by flask.palletsprojects.com #
 
PREVIOUS NEXT
Tagged: #flask #response #style
ADD COMMENT
Topic
Name
1+5 =