applications.txt 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483
  1. ============
  2. Applications
  3. ============
  4. .. module:: django.apps
  5. Django contains a registry of installed applications that stores configuration
  6. and provides introspection. It also maintains a list of available :doc:`models
  7. </topics/db/models>`.
  8. This registry is called :attr:`~django.apps.apps` and it's available in
  9. :mod:`django.apps`::
  10. >>> from django.apps import apps
  11. >>> apps.get_app_config('admin').verbose_name
  12. 'Administration'
  13. Projects and applications
  14. =========================
  15. The term **project** describes a Django web application. The project Python
  16. package is defined primarily by a settings module, but it usually contains
  17. other things. For example, when you run ``django-admin startproject mysite``
  18. you'll get a ``mysite`` project directory that contains a ``mysite`` Python
  19. package with ``settings.py``, ``urls.py``, ``asgi.py`` and ``wsgi.py``. The
  20. project package is often extended to include things like fixtures, CSS, and
  21. templates which aren't tied to a particular application.
  22. A **project's root directory** (the one that contains ``manage.py``) is usually
  23. the container for all of a project's applications which aren't installed
  24. separately.
  25. The term **application** describes a Python package that provides some set of
  26. features. Applications :doc:`may be reused </intro/reusable-apps/>` in various
  27. projects.
  28. Applications include some combination of models, views, templates, template
  29. tags, static files, URLs, middleware, etc. They're generally wired into
  30. projects with the :setting:`INSTALLED_APPS` setting and optionally with other
  31. mechanisms such as URLconfs, the :setting:`MIDDLEWARE` setting, or template
  32. inheritance.
  33. It is important to understand that a Django application is a set of code
  34. that interacts with various parts of the framework. There's no such thing as
  35. an ``Application`` object. However, there's a few places where Django needs to
  36. interact with installed applications, mainly for configuration and also for
  37. introspection. That's why the application registry maintains metadata in an
  38. :class:`~django.apps.AppConfig` instance for each installed application.
  39. There's no restriction that a project package can't also be considered an
  40. application and have models, etc. (which would require adding it to
  41. :setting:`INSTALLED_APPS`).
  42. .. _configuring-applications-ref:
  43. Configuring applications
  44. ========================
  45. To configure an application, subclass :class:`~django.apps.AppConfig` and put
  46. the dotted path to that subclass in :setting:`INSTALLED_APPS`.
  47. When :setting:`INSTALLED_APPS` contains the dotted path to an application
  48. module, Django checks for a ``default_app_config`` variable in that module.
  49. If it's defined, it's the dotted path to the :class:`~django.apps.AppConfig`
  50. subclass for that application.
  51. If there is no ``default_app_config``, Django uses the base
  52. :class:`~django.apps.AppConfig` class.
  53. ``default_app_config`` allows applications that predate Django 1.7 such as
  54. ``django.contrib.admin`` to opt-in to :class:`~django.apps.AppConfig` features
  55. without requiring users to update their :setting:`INSTALLED_APPS`.
  56. New applications should avoid ``default_app_config``. Instead they should
  57. require the dotted path to the appropriate :class:`~django.apps.AppConfig`
  58. subclass to be configured explicitly in :setting:`INSTALLED_APPS`.
  59. For application authors
  60. -----------------------
  61. If you're creating a pluggable app called "Rock ’n’ roll", here's how you
  62. would provide a proper name for the admin::
  63. # rock_n_roll/apps.py
  64. from django.apps import AppConfig
  65. class RockNRollConfig(AppConfig):
  66. name = 'rock_n_roll'
  67. verbose_name = "Rock ’n’ roll"
  68. You can make your application load this :class:`~django.apps.AppConfig`
  69. subclass by default as follows::
  70. # rock_n_roll/__init__.py
  71. default_app_config = 'rock_n_roll.apps.RockNRollConfig'
  72. That will cause ``RockNRollConfig`` to be used when :setting:`INSTALLED_APPS`
  73. contains ``'rock_n_roll'``. This allows you to make use of
  74. :class:`~django.apps.AppConfig` features without requiring your users to update
  75. their :setting:`INSTALLED_APPS` setting. Besides this use case, it's best to
  76. avoid using ``default_app_config`` and instead specify the app config class in
  77. :setting:`INSTALLED_APPS` as described next.
  78. Of course, you can also tell your users to put
  79. ``'rock_n_roll.apps.RockNRollConfig'`` in their :setting:`INSTALLED_APPS`
  80. setting. You can even provide several different
  81. :class:`~django.apps.AppConfig` subclasses with different behaviors and allow
  82. your users to choose one via their :setting:`INSTALLED_APPS` setting.
  83. The recommended convention is to put the configuration class in a submodule of
  84. the application called ``apps``. However, this isn't enforced by Django.
  85. You must include the :attr:`~django.apps.AppConfig.name` attribute for Django
  86. to determine which application this configuration applies to. You can define
  87. any attributes documented in the :class:`~django.apps.AppConfig` API
  88. reference.
  89. .. note::
  90. If your code imports the application registry in an application's
  91. ``__init__.py``, the name ``apps`` will clash with the ``apps`` submodule.
  92. The best practice is to move that code to a submodule and import it. A
  93. workaround is to import the registry under a different name::
  94. from django.apps import apps as django_apps
  95. For application users
  96. ---------------------
  97. If you're using "Rock ’n’ roll" in a project called ``anthology``, but you
  98. want it to show up as "Jazz Manouche" instead, you can provide your own
  99. configuration::
  100. # anthology/apps.py
  101. from rock_n_roll.apps import RockNRollConfig
  102. class JazzManoucheConfig(RockNRollConfig):
  103. verbose_name = "Jazz Manouche"
  104. # anthology/settings.py
  105. INSTALLED_APPS = [
  106. 'anthology.apps.JazzManoucheConfig',
  107. # ...
  108. ]
  109. Again, defining project-specific configuration classes in a submodule called
  110. ``apps`` is a convention, not a requirement.
  111. Application configuration
  112. =========================
  113. .. class:: AppConfig
  114. Application configuration objects store metadata for an application. Some
  115. attributes can be configured in :class:`~django.apps.AppConfig`
  116. subclasses. Others are set by Django and read-only.
  117. Configurable attributes
  118. -----------------------
  119. .. attribute:: AppConfig.name
  120. Full Python path to the application, e.g. ``'django.contrib.admin'``.
  121. This attribute defines which application the configuration applies to. It
  122. must be set in all :class:`~django.apps.AppConfig` subclasses.
  123. It must be unique across a Django project.
  124. .. attribute:: AppConfig.label
  125. Short name for the application, e.g. ``'admin'``
  126. This attribute allows relabeling an application when two applications
  127. have conflicting labels. It defaults to the last component of ``name``.
  128. It should be a valid Python identifier.
  129. It must be unique across a Django project.
  130. .. attribute:: AppConfig.verbose_name
  131. Human-readable name for the application, e.g. "Administration".
  132. This attribute defaults to ``label.title()``.
  133. .. attribute:: AppConfig.path
  134. Filesystem path to the application directory, e.g.
  135. ``'/usr/lib/pythonX.Y/dist-packages/django/contrib/admin'``.
  136. In most cases, Django can automatically detect and set this, but you can
  137. also provide an explicit override as a class attribute on your
  138. :class:`~django.apps.AppConfig` subclass. In a few situations this is
  139. required; for instance if the app package is a `namespace package`_ with
  140. multiple paths.
  141. Read-only attributes
  142. --------------------
  143. .. attribute:: AppConfig.module
  144. Root module for the application, e.g. ``<module 'django.contrib.admin' from
  145. 'django/contrib/admin/__init__.py'>``.
  146. .. attribute:: AppConfig.models_module
  147. Module containing the models, e.g. ``<module 'django.contrib.admin.models'
  148. from 'django/contrib/admin/models.py'>``.
  149. It may be ``None`` if the application doesn't contain a ``models`` module.
  150. Note that the database related signals such as
  151. :data:`~django.db.models.signals.pre_migrate` and
  152. :data:`~django.db.models.signals.post_migrate`
  153. are only emitted for applications that have a ``models`` module.
  154. Methods
  155. -------
  156. .. method:: AppConfig.get_models()
  157. Returns an iterable of :class:`~django.db.models.Model` classes for this
  158. application.
  159. Requires the app registry to be fully populated.
  160. .. method:: AppConfig.get_model(model_name, require_ready=True)
  161. Returns the :class:`~django.db.models.Model` with the given
  162. ``model_name``. ``model_name`` is case-insensitive.
  163. Raises :exc:`LookupError` if no such model exists in this application.
  164. Requires the app registry to be fully populated unless the
  165. ``require_ready`` argument is set to ``False``. ``require_ready`` behaves
  166. exactly as in :meth:`apps.get_model()`.
  167. .. method:: AppConfig.ready()
  168. Subclasses can override this method to perform initialization tasks such
  169. as registering signals. It is called as soon as the registry is fully
  170. populated.
  171. Although you can't import models at the module-level where
  172. :class:`~django.apps.AppConfig` classes are defined, you can import them in
  173. ``ready()``, using either an ``import`` statement or
  174. :meth:`~AppConfig.get_model`.
  175. If you're registering :mod:`model signals <django.db.models.signals>`, you
  176. can refer to the sender by its string label instead of using the model
  177. class itself.
  178. Example::
  179. from django.apps import AppConfig
  180. from django.db.models.signals import pre_save
  181. class RockNRollConfig(AppConfig):
  182. # ...
  183. def ready(self):
  184. # importing model classes
  185. from .models import MyModel # or...
  186. MyModel = self.get_model('MyModel')
  187. # registering signals with the model's string label
  188. pre_save.connect(receiver, sender='app_label.MyModel')
  189. .. warning::
  190. Although you can access model classes as described above, avoid
  191. interacting with the database in your :meth:`ready()` implementation.
  192. This includes model methods that execute queries
  193. (:meth:`~django.db.models.Model.save()`,
  194. :meth:`~django.db.models.Model.delete()`, manager methods etc.), and
  195. also raw SQL queries via ``django.db.connection``. Your
  196. :meth:`ready()` method will run during startup of every management
  197. command. For example, even though the test database configuration is
  198. separate from the production settings, ``manage.py test`` would still
  199. execute some queries against your **production** database!
  200. .. note::
  201. In the usual initialization process, the ``ready`` method is only called
  202. once by Django. But in some corner cases, particularly in tests which
  203. are fiddling with installed applications, ``ready`` might be called more
  204. than once. In that case, either write idempotent methods, or put a flag
  205. on your ``AppConfig`` classes to prevent re-running code which should
  206. be executed exactly one time.
  207. .. _namespace package:
  208. Namespace packages as apps
  209. --------------------------
  210. Python packages without an ``__init__.py`` file are known as "namespace
  211. packages" and may be spread across multiple directories at different locations
  212. on ``sys.path`` (see :pep:`420`).
  213. Django applications require a single base filesystem path where Django
  214. (depending on configuration) will search for templates, static assets,
  215. etc. Thus, namespace packages may only be Django applications if one of the
  216. following is true:
  217. #. The namespace package actually has only a single location (i.e. is not
  218. spread across more than one directory.)
  219. #. The :class:`~django.apps.AppConfig` class used to configure the application
  220. has a :attr:`~django.apps.AppConfig.path` class attribute, which is the
  221. absolute directory path Django will use as the single base path for the
  222. application.
  223. If neither of these conditions is met, Django will raise
  224. :exc:`~django.core.exceptions.ImproperlyConfigured`.
  225. Application registry
  226. ====================
  227. .. data:: apps
  228. The application registry provides the following public API. Methods that
  229. aren't listed below are considered private and may change without notice.
  230. .. attribute:: apps.ready
  231. Boolean attribute that is set to ``True`` after the registry is fully
  232. populated and all :meth:`AppConfig.ready` methods are called.
  233. .. method:: apps.get_app_configs()
  234. Returns an iterable of :class:`~django.apps.AppConfig` instances.
  235. .. method:: apps.get_app_config(app_label)
  236. Returns an :class:`~django.apps.AppConfig` for the application with the
  237. given ``app_label``. Raises :exc:`LookupError` if no such application
  238. exists.
  239. .. method:: apps.is_installed(app_name)
  240. Checks whether an application with the given name exists in the registry.
  241. ``app_name`` is the full name of the app, e.g. ``'django.contrib.admin'``.
  242. .. method:: apps.get_model(app_label, model_name, require_ready=True)
  243. Returns the :class:`~django.db.models.Model` with the given ``app_label``
  244. and ``model_name``. As a shortcut, this method also accepts a single
  245. argument in the form ``app_label.model_name``. ``model_name`` is
  246. case-insensitive.
  247. Raises :exc:`LookupError` if no such application or model exists. Raises
  248. :exc:`ValueError` when called with a single argument that doesn't contain
  249. exactly one dot.
  250. Requires the app registry to be fully populated unless the
  251. ``require_ready`` argument is set to ``False``.
  252. Setting ``require_ready`` to ``False`` allows looking up models
  253. :ref:`while the app registry is being populated <app-loading-process>`,
  254. specifically during the second phase where it imports models. Then
  255. ``get_model()`` has the same effect as importing the model. The main use
  256. case is to configure model classes with settings, such as
  257. :setting:`AUTH_USER_MODEL`.
  258. When ``require_ready`` is ``False``, ``get_model()`` returns a model class
  259. that may not be fully functional (reverse accessors may be missing, for
  260. example) until the app registry is fully populated. For this reason, it's
  261. best to leave ``require_ready`` to the default value of ``True`` whenever
  262. possible.
  263. .. _app-loading-process:
  264. Initialization process
  265. ======================
  266. How applications are loaded
  267. ---------------------------
  268. When Django starts, :func:`django.setup()` is responsible for populating the
  269. application registry.
  270. .. currentmodule:: django
  271. .. function:: setup(set_prefix=True)
  272. Configures Django by:
  273. * Loading the settings.
  274. * Setting up logging.
  275. * If ``set_prefix`` is True, setting the URL resolver script prefix to
  276. :setting:`FORCE_SCRIPT_NAME` if defined, or ``/`` otherwise.
  277. * Initializing the application registry.
  278. This function is called automatically:
  279. * When running an HTTP server via Django's WSGI support.
  280. * When invoking a management command.
  281. It must be called explicitly in other cases, for instance in plain Python
  282. scripts.
  283. .. currentmodule:: django.apps
  284. The application registry is initialized in three stages. At each stage, Django
  285. processes all applications in the order of :setting:`INSTALLED_APPS`.
  286. #. First Django imports each item in :setting:`INSTALLED_APPS`.
  287. If it's an application configuration class, Django imports the root package
  288. of the application, defined by its :attr:`~AppConfig.name` attribute. If
  289. it's a Python package, Django creates a default application configuration.
  290. *At this stage, your code shouldn't import any models!*
  291. In other words, your applications' root packages and the modules that
  292. define your application configuration classes shouldn't import any models,
  293. even indirectly.
  294. Strictly speaking, Django allows importing models once their application
  295. configuration is loaded. However, in order to avoid needless constraints on
  296. the order of :setting:`INSTALLED_APPS`, it's strongly recommended not
  297. import any models at this stage.
  298. Once this stage completes, APIs that operate on application configurations
  299. such as :meth:`~apps.get_app_config()` become usable.
  300. #. Then Django attempts to import the ``models`` submodule of each application,
  301. if there is one.
  302. You must define or import all models in your application's ``models.py`` or
  303. ``models/__init__.py``. Otherwise, the application registry may not be fully
  304. populated at this point, which could cause the ORM to malfunction.
  305. Once this stage completes, APIs that operate on models such as
  306. :meth:`~apps.get_model()` become usable.
  307. #. Finally Django runs the :meth:`~AppConfig.ready()` method of each application
  308. configuration.
  309. .. _applications-troubleshooting:
  310. Troubleshooting
  311. ---------------
  312. Here are some common problems that you may encounter during initialization:
  313. * :class:`~django.core.exceptions.AppRegistryNotReady`: This happens when
  314. importing an application configuration or a models module triggers code that
  315. depends on the app registry.
  316. For example, :func:`~django.utils.translation.gettext()` uses the app
  317. registry to look up translation catalogs in applications. To translate at
  318. import time, you need :func:`~django.utils.translation.gettext_lazy()`
  319. instead. (Using :func:`~django.utils.translation.gettext()` would be a bug,
  320. because the translation would happen at import time, rather than at each
  321. request depending on the active language.)
  322. Executing database queries with the ORM at import time in models modules
  323. will also trigger this exception. The ORM cannot function properly until all
  324. models are available.
  325. This exception also happens if you forget to call :func:`django.setup()` in
  326. a standalone Python script.
  327. * ``ImportError: cannot import name ...`` This happens if the import sequence
  328. ends up in a loop.
  329. To eliminate such problems, you should minimize dependencies between your
  330. models modules and do as little work as possible at import time. To avoid
  331. executing code at import time, you can move it into a function and cache its
  332. results. The code will be executed when you first need its results. This
  333. concept is known as "lazy evaluation".
  334. * ``django.contrib.admin`` automatically performs autodiscovery of ``admin``
  335. modules in installed applications. To prevent it, change your
  336. :setting:`INSTALLED_APPS` to contain
  337. ``'django.contrib.admin.apps.SimpleAdminConfig'`` instead of
  338. ``'django.contrib.admin'``.