The full documentation is at https://django-subcommand2.readthedocs.io.
Install django-subcommand:
pip install django-subcommand2
# myapp.management.commands.parent_command.py from subcommand.base import SubcommandCommand from .subcommands.sub import MySubcommand class Command(SubcommandCommand): help = 'My Parent Command' subcommands = { 'sub': MySubcommand, # python manage.py parent_command sub } # myapp.management.commands.subcommands.sub.py from django.core.management.base import BaseCommand class MySubcommand(BaseCommand): help = 'My Sub Command'