django_utils.management.commands package¶
Submodules¶
django_utils.management.commands.admin_autogen module¶
django_utils.management.commands.base_command module¶
- class django_utils.management.commands.base_command.CustomAppCommand(*args: Any, **kwargs: Any)[source]¶
Bases:
CustomBaseCommand,AppCommand
django_utils.management.commands.settings module¶
- class django_utils.management.commands.settings.Command(*args: Any, **kwargs: Any)[source]¶
Bases:
CustomBaseCommand- add_arguments(parser: ArgumentParser) None[source]¶
Entry point for subclassed commands to add custom arguments.
- can_import_settings = True¶
- handle(*args: Any, **options: Any) None[source]¶
The actual logic of the command. Subclasses must implement this method.
- help = 'Get a list of the current settings, any arguments given will be\n used to match the settings name (case insensitive).\n '¶
- render_output(data: dict[str, Any] | None, output_type: str | None = 'pprint', show_keys: bool = False, **options: Any) None[source]¶
- requires_model_validation = False¶