How do I create application scope variable django?

django

Solution

You could add it to your `settings.py` file. Or, add it to the `__init__.py` file inside the app directory.

Problem

How can I create an application scope variable which is loaded when the django app starts, be in memory and accessible by all. Basically I want to reuse the variable through out the application without reloading it. Thanks

Original source