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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-subcommand2-0.1.1.tar.gz (5.5 kB view hashes)

Uploaded Source

Built Distribution

django_subcommand2-0.1.1-py2.py3-none-any.whl (4.4 kB view hashes)

Uploaded Python 2 Python 3

Supported by

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