module documentation

Base classes for writing management commands (named commands which can be executed through django-admin or manage.py).
Constant ALL​_CHECKS Undocumented
Class ​App​Command A management command which takes one or more installed application labels as arguments, and does something with each of them.
Class ​Base​Command The base class from which all management commands ultimately derive.
Class ​Command​Error Exception class indicating a problem while executing a management command.
Class ​Command​Parser Customized ArgumentParser class to improve some error messages and prevent SystemExit in several occasions, as SystemExit is unacceptable when a command is called programmatically.
Class ​Django​Help​Formatter Customized formatter so that command-specific arguments appear in the --help output before arguments common to all commands.
Class ​Label​Command A management command which takes one or more arbitrary arguments (labels) on the command line, and does something with each of them.
Class ​Output​Wrapper Wrapper around stdout/stderr
Class ​System​Check​Error The system check framework detected unrecoverable errors.
Function handle​_default​_options Include any default options that all commands should accept here so that ManagementUtility can handle them before searching for user commands.
Function no​_translations Decorator that forces a command to run with translations deactivated.
ALL_CHECKS: str =

Undocumented

Value
'__all__'
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.