Applications
Applications
Django contains a registry of installed applications that stores configuration and provides introspection. It also maintains a list of available models.
This registry is simply called apps
and it’s available in django.apps
:
>>> from django.apps import apps >>> apps.get_app_config('admin').verbose_name 'Admin'
Projects and applications
The term project describes a Django web application. The project Python package is defined primarily by a settings module, but it usually contains other things. For example,