Check if Flask request context is available

10,641

Use has_request_context or has_app_context.

if has_request_context():
    # request is active

Alternatively, current_app, g, request, and session are all instances of LocalProxy. If a proxy is not bound, it will be False when treated as a boolean.

if request:
    # request is active
Share:
10,641
ubombi
Author by

ubombi

I hate ORMs

Updated on June 19, 2022

Comments

  • ubombi
    ubombi about 2 years

    I want to log some data from context variables (request, session) when logging during a Flask request, but use default behavior if not.

    I'm using a try ... except block in logging.formatter. Is there a better way to check for a request context?

    try:
        record.user = session['user_name']
        record.very_important_data = request.super_secret
    except Exception:
        record.user = None