Module base
Base classes for writing management commands (named commands which can be executed through ``django-admin`` or ``manage.py``).
source linkClasses
-
A management command which takes one or more installed application labels as arguments, and does something with each of them.
-
The base class from which all management commands ultimately derive.
-
Exception class indicating a problem while executing a management command.
-
Customized ArgumentParser class to improve some error messages and prevent SystemExit in several occasions, as SystemExit is unacceptable when a command is called programmatically.
-
Customized formatter so that command-specific arguments appear in the --help output before arguments common to all commands.
-
A management command which takes one or more arbitrary arguments (labels) on the command line, and does something with each of them.
-
Wrapper around stdout/stderr
-
The system check framework detected unrecoverable errors.
Functions
▶ def handle_default_options(options) Include any default options that all commands should accept here so that ManagementUtility can handle them before searching for user commands.
▶ def no_translations(handle_func) Decorator that forces a command to run with translations deactivated.