MCPcopy
hub / github.com/django/django / get_app_configs

Method get_app_configs

django/apps/registry.py:145–148  ·  view source on GitHub ↗

Import applications and return an iterable of app configs.

(self)

Source from the content-addressed store, hash-verified

143 raise AppRegistryNotReady("Models aren't loaded yet.")
144
145 def get_app_configs(self):
146 """Import applications and return an iterable of app configs."""
147 self.check_apps_ready()
148 return self.app_configs.values()
149
150 def get_app_config(self, app_label):
151 """

Callers 15

populateMethod · 0.95
get_app_configMethod · 0.95
set_available_appsMethod · 0.95
__init__Method · 0.80
checkMethod · 0.80
autodiscover_modulesFunction · 0.80
all_locale_pathsFunction · 0.80
get_commandsFunction · 0.80
autocompleteMethod · 0.80
emit_pre_migrate_signalFunction · 0.80

Calls 2

check_apps_readyMethod · 0.95
valuesMethod · 0.45