Flask contexts and locals

Created: Apr 7 2022, 21:36 UTC
Last modified: Dec 25 2024, 07:50 UTC

Flask

Flask uses thread locals for its web objects. So, for example, things like the current app, the request, etc. are accessed via a global variable that automatically proxies them - you’re always accessing your application, in your thread.

The global variables (context locals) are:

  • _request_ctx_stack
  • _app_ctx_stack
  • current_app
  • request
  • session
  • g

No backlinks