globals.py 805 B

12345678910111213141516171819202122232425262728293031
  1. from collections import defaultdict
  2. # Please Note: Due to necessary changes and the complex nature involved in the plugin/globals system,
  3. # no backwards compatibility is guaranteed for the plugin system API.
  4. # However, we will still try our best.
  5. class Indirect:
  6. def __init__(self, initial, /):
  7. self.value = initial
  8. def __repr__(self, /):
  9. return f'{type(self).__name__}({self.value!r})'
  10. postprocessors = Indirect({})
  11. extractors = Indirect({})
  12. # Plugins
  13. all_plugins_loaded = Indirect(False)
  14. plugin_specs = Indirect({})
  15. plugin_dirs = Indirect(['default'])
  16. plugin_ies = Indirect({})
  17. plugin_pps = Indirect({})
  18. plugin_ies_overrides = Indirect(defaultdict(list))
  19. # Misc
  20. IN_CLI = Indirect(False)
  21. LAZY_EXTRACTORS = Indirect(None) # `False`=force, `None`=disabled, `True`=enabled