Class AppCommand
A management command which takes one or more installed application labels as arguments, and does something with each of them.
Declaration
source linkDocumentation
Rather than implementing ``handle()``, subclasses must implement
``handle_app_config()``, which will be called once for each application.
Methods
▶ def add_arguments(self, parser) overrideinherited doc Entry point for subclassed commands to add custom arguments.
▶ def handle(self, *app_labels, **options) overrideinherited doc The actual logic of the command. Subclasses must implement this method.
▶ def handle_app_config(self, app_config, **options) Perform the command's actions for app_config, an AppConfig instance corresponding to an application label given on the command line.
Overrides
This method is overriden in: