I have following structure of my folders in Django:
./project_root ./app ./fixtures/ ./static/ ./templates/ ./blog/ ./
It is best practice not to access INSTALLED_APPS directly as stated in django docs but to use the registry instead:
INSTALLED_APPS
from django.apps import apps for app in apps.get_app_configs(): app_name = app.name try: ...