Skip to main content

Support subcommands in management commands

Project description

https://img.shields.io/pypi/v/django-subcommand2.svg https://img.shields.io/pypi/dm/django-subcommand2.svg https://img.shields.io/travis/CptLemming/django-subcommand2.svg

Documentation

The full documentation is at https://django-subcommand2.readthedocs.org.

Install

Install django-subcommand:

pip install django-subcommand2

Usage

# 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'

History

0.1.0 (2016-01-26)

  • First release on PyPI.

0.1.1 (2016-01-26)

  • Update badges.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page