env.py 844 B

123456789101112131415161718192021222324
  1. import threading
  2. '''
  3. Thread-local bucket for switching configuration. Different environments
  4. (e.g. webapp, test suite) put the appropriate value in it.
  5. The most important values to be stored are app_conf (either from
  6. lakesuperior.config_parser.config or lakesuperior.config_parser.test_config)
  7. and app_globals (obtained by an instance of lakesuperior.globals.AppGlobals).
  8. e.g.:
  9. >>> from lakesuperior.config_parser import config
  10. >>> from lakesuperior.globals import AppGlobals
  11. >>> from lakesuperior.env import env
  12. >>> env.config = config
  13. >>> env.app_globals = AppGlobals(config)
  14. This is automated in non-test environments by importing
  15. `lakesuperior.env_setup`.
  16. Context variables would be ideal: https://www.python.org/dev/peps/pep-0567/
  17. However they are only available in Python 3.7. Better keep an eye on that.
  18. '''
  19. env = threading.local()