アプリケーションLink to this heading
Django には、設定の保存と調査の手段を提供するインストール済みアプリケーションのレジストリがあり、利用可能な モデル のリストもアクセスできます。
このレジストリは単に apps と呼ばれ、次のようにして django.apps から使用できます。
>>> from django.apps import apps
>>> apps.get_app_config('admin').verbose_name
'Admin'
プロジェクトとアプリケーションLink to this heading
プロジェクト (project) という単語は、Django の web アプリケーションを指します。プロジェクトの Python パッケージは主に settings モジュールで定義されますが、通常は他のファイルも含まれます。たとえば、 django-admin startproject mysite を実行すると、mysite プロジェクトディレクトリが作成され、その中には settings.py、urls.py、wsgi.py などのファイルが含まれる mysite Python パッケージが作られます。プロジェクトパッケージは、fixture や CSS、テンプレートなど特定のアプリケーションに束縛されないファイルも含まれることがふつうです。
プロジェクトのルートディレクトリ (manage.py があるディレクトリ) は、プロジェクトと一緒にインストールされるすべてのアプリケーションのコンテナとして機能します。
アプリケーション (application) という言葉は、何らかの機能を提供する Python パッケージを意味します。アプリケーションはさまざまなプロジェクトで 再利用する ことができます。
アプリケーションには、モデル、ビュー、テンプレート、テンプレートタグ、スタティックファイル、ミドルウェアなどが含まれます。これらは一般に INSTALLED_APPS 設定で有効になり、それ以外では URLconfs、 MIDDLEWARE 設定、テンプレート継承などの仕組みから使われます。
Django のアプリケーションは、フレームワークのさまざまなパーツとやりとりをする単なるコードの集まりであると理解するのは大切です。Application オブジェクトのようなものは存在しません。しかしながら、Django がインストール済みのアプリケーションの主に設定やイントロスペクションとやりとりをする必要があることもあります。そのため、インストールアプリケーションごとのメタデータは、アプリケーションレジストリが AppConfig インスタンス内に保存しています。
There's no restriction that a project package can't also be considered an
application and have models, etc. (which would require adding it to
INSTALLED_APPS).
アプリケーションを設定するLink to this heading
アプリケーションを設定するには、 AppConfig のサブクラスを作り、そのサブクラスへのドット区切りのパスを INSTALLED_APPS に追加します。
INSTALLED_APPS にアプリケーションモジュールを指すドット区切りのパスがある場合、Django はそのモジュールの default_app_config 変数をチェックします。
もしこの変数が定義されていれば、そのドット区切りのパスがアプリケーション AppConfig サブクラスになります。
もし default_app_config が定義されていなければ、Django は ベースとなる AppConfig クラスを使用します。
default_app_config allows applications that predate Django 1.7 such as
django.contrib.admin to opt-in to AppConfig features
without requiring users to update their INSTALLED_APPS.
New applications should avoid default_app_config. Instead they should
require the dotted path to the appropriate AppConfig
subclass to be configured explicitly in INSTALLED_APPS.
アプリケーションユーザー向けLink to this heading
If you're using "Rock ’n’ roll" in a project called anthology, but you
want it to show up as "Jazz Manouche" instead, you can provide your own
configuration:
# anthology/apps.py
from rock_n_roll.apps import RockNRollConfig
class JazzManoucheConfig(RockNRollConfig):
verbose_name = "Jazz Manouche"
# anthology/settings.py
INSTALLED_APPS = [
'anthology.apps.JazzManoucheConfig',
# ...
]
Again, defining project-specific configuration classes in a submodule called
apps is a convention, not a requirement.
Application configurationLink to this heading
- class AppConfigLink to this definition
Application configuration objects store metadata for an application. Some attributes can be configured in
AppConfigsubclasses. Others are set by Django and read-only.
Configurable attributesLink to this heading
- AppConfig.nameLink to this definition
Full Python path to the application, e.g.
'django.contrib.admin'.This attribute defines which application the configuration applies to. It must be set in all
AppConfigsubclasses.Djangoプロジェクト全体の中で固有である必要があります。
- AppConfig.labelLink to this definition
Short name for the application, e.g.
'admin'This attribute allows relabeling an application when two applications have conflicting labels. It defaults to the last component of
name. It should be a valid Python identifier.Djangoプロジェクト全体の中で固有である必要があります。
- AppConfig.verbose_nameLink to this definition
Human-readable name for the application, e.g. "Administration".
This attribute defaults to
label.title().
- AppConfig.pathLink to this definition
Filesystem path to the application directory, e.g.
'/usr/lib/python3.4/dist-packages/django/contrib/admin'.In most cases, Django can automatically detect and set this, but you can also provide an explicit override as a class attribute on your
AppConfigsubclass. In a few situations this is required; for instance if the app package is a namespace package with multiple paths.
読み取り専用属性Link to this heading
- AppConfig.moduleLink to this definition
Root module for the application, e.g.
<module 'django.contrib.admin' from 'django/contrib/admin/__init__.pyc'>.
- AppConfig.models_moduleLink to this definition
Module containing the models, e.g.
<module 'django.contrib.admin.models' from 'django/contrib/admin/models.pyc'>.It may be
Noneif the application doesn't contain amodelsmodule. Note that the database related signals such aspre_migrateandpost_migrateare only emitted for applications that have amodelsmodule.
メソッドLink to this heading
- AppConfig.get_models()Link to this definition
Returns an iterable of
Modelclasses for this application.Requires the app registry to be fully populated.
- AppConfig.get_model(model_name, require_ready=True)Link to this definition
Returns the
Modelwith the givenmodel_name.model_nameis case-insensitive.Raises
LookupErrorif no such model exists in this application.Requires the app registry to be fully populated unless the
require_readyargument is set toFalse.require_readybehaves exactly as inapps.get_model().
- AppConfig.ready()Link to this definition
Subclasses can override this method to perform initialization tasks such as registering signals. It is called as soon as the registry is fully populated.
Although you can't import models at the module-level where
AppConfigclasses are defined, you can import them inready(), using either animportstatement orget_model().If you're registering
model signals, you can refer to the sender by its string label instead of using the model class itself.実装例:
from django.db.models.signals import pre_save def ready(self): # importing model classes from .models import MyModel # or... MyModel = self.get_model('MyModel') # registering signals with the model's string label pre_save.connect(receiver, sender='app_label.MyModel')
Namespace packages as apps (Python 3.3+)Link to this heading
Python versions 3.3 and later support Python packages without an
__init__.py file. These packages are known as "namespace packages" and may
be spread across multiple directories at different locations on sys.path
(see PEP 420).
Django applications require a single base filesystem path where Django (depending on configuration) will search for templates, static assets, etc. Thus, namespace packages may only be Django applications if one of the following is true:
The namespace package actually has only a single location (i.e. is not spread across more than one directory.)
The
AppConfigclass used to configure the application has apathclass attribute, which is the absolute directory path Django will use as the single base path for the application.
If neither of these conditions is met, Django will raise
ImproperlyConfigured.
Application registryLink to this heading
- appsLink to this definition
The application registry provides the following public API. Methods that aren't listed below are considered private and may change without notice.
- apps.readyLink to this definition
Boolean attribute that is set to
Trueafter the registry is fully populated and allAppConfig.ready()methods are called.
- apps.get_app_configs()Link to this definition
Returns an iterable of
AppConfiginstances.
- apps.get_app_config(app_label)Link to this definition
Returns an
AppConfigfor the application with the givenapp_label. RaisesLookupErrorif no such application exists.
- apps.is_installed(app_name)Link to this definition
Checks whether an application with the given name exists in the registry.
app_nameis the full name of the app, e.g.'django.contrib.admin'.
- apps.get_model(app_label, model_name, require_ready=True)Link to this definition
Returns the
Modelwith the givenapp_labelandmodel_name. As a shortcut, this method also accepts a single argument in the formapp_label.model_name.model_nameis case-insensitive.Raises
LookupErrorif no such application or model exists. RaisesValueErrorwhen called with a single argument that doesn't contain exactly one dot.Requires the app registry to be fully populated unless the
require_readyargument is set toFalse.Setting
require_readytoFalseallows looking up models while the app registry is being populated, specifically during the second phase where it imports models. Thenget_model()has the same effect as importing the model. The main use case is to configure model classes with settings, such asAUTH_USER_MODEL.When
require_readyisFalse,get_model()returns a model class that may not be fully functional (reverse accessors may be missing, for example) until the app registry is fully populated. For this reason, it's best to leaverequire_readyto the default value ofTruewhenever possible.
Initialization processLink to this heading
How applications are loadedLink to this heading
When Django starts, django.setup() is responsible for populating the
application registry.
- setup(set_prefix=True)Link to this definition
Configures Django by:
Loading the settings.
Setting up logging.
If
set_prefixis True, setting the URL resolver script prefix toFORCE_SCRIPT_NAMEif defined, or/otherwise.Initializing the application registry.
This function is called automatically:
When running an HTTP server via Django's WSGI support.
When invoking a management command.
It must be called explicitly in other cases, for instance in plain Python scripts.
The application registry is initialized in three stages. At each stage, Django
processes all applications in the order of INSTALLED_APPS.
First Django imports each item in
INSTALLED_APPS.If it's an application configuration class, Django imports the root package of the application, defined by its
nameattribute. If it's a Python package, Django creates a default application configuration.At this stage, your code shouldn't import any models!
In other words, your applications' root packages and the modules that define your application configuration classes shouldn't import any models, even indirectly.
Strictly speaking, Django allows importing models once their application configuration is loaded. However, in order to avoid needless constraints on the order of
INSTALLED_APPS, it's strongly recommended not import any models at this stage.Once this stage completes, APIs that operate on application configurations such as
get_app_config()become usable.Then Django attempts to import the
modelssubmodule of each application, if there is one.You must define or import all models in your application's
models.pyormodels/__init__.py. Otherwise, the application registry may not be fully populated at this point, which could cause the ORM to malfunction.Once this stage completes, APIs that operate on models such as
get_model()become usable.Finally Django runs the
ready()method of each application configuration.
トラブルシューティングLink to this heading
Here are some common problems that you may encounter during initialization:
AppRegistryNotReady: This happens when importing an application configuration or a models module triggers code that depends on the app registry.For example,
ugettext()uses the app registry to look up translation catalogs in applications. To translate at import time, you needugettext_lazy()instead. (Usingugettext()would be a bug, because the translation would happen at import time, rather than at each request depending on the active language.)Executing database queries with the ORM at import time in models modules will also trigger this exception. The ORM cannot function properly until all models are available.
This exception also happens if you forget to call
django.setup()in a standalone Python script.ImportError: cannot import name ...This happens if the import sequence ends up in a loop.To eliminate such problems, you should minimize dependencies between your models modules and do as little work as possible at import time. To avoid executing code at import time, you can move it into a function and cache its results. The code will be executed when you first need its results. This concept is known as "lazy evaluation".
django.contrib.adminautomatically performs autodiscovery ofadminmodules in installed applications. To prevent it, change yourINSTALLED_APPSto contain'django.contrib.admin.apps.SimpleAdminConfig'instead of'django.contrib.admin'.