Skip to main content

Allows multiple apps to override the same management command in Django

Project description

© 2014 Thomas Khyn

MCMO stands for ‘Management Command Multiple Override’. This django app allows multiple apps to override the same management command without evicting any.

Supports Django 1.4 to 1.7 and matching Python 2 and 3 versions.

Installation

As straightforward as it can be, using pip:

pip install django-mcmo

Usage

In your manage.py file, replace the line:

from django.core import management

by:

from mcmo import management

You can now use applications that concurrently define overrides for django.core management commands. Both commands will be called.

For example, if you are using djinga and django-extra_keywords, which both override Django’s makemessages management command, both commands from both applications will be called subsequently.

The first command which will be called will be the one relative to the application in the latest position in the INSTALLED_APPS.

Alternative usage

In your manage.py is automatically generated (e.g. if you are using buildout with djangorecipebook or djangorecipe), simply make sure that the statement:

import mcmo

is executed before calling django.management.execute_from_command_line.

Importing the package patches the django.core.management module, which functions are then enabled for multiple-override support.

Limitations

The same-name overrides should all derive from the same command class, or at least from on of Django’s base command classes (AppCommand, LabelCommand or NoArgsCommand).

django-mcmo will raise a warning (but the execution will carry on) in case of subclassing inconsistencies. For example, if the command cmd in app1 inherits from AppCommand and the command cmd in app2 inherits from NoArgsCommand. Indeed, as only one command is likely to be executed, the obtained results may not be consistent, depend on the relative position of the apps in INSTALLED_APPS, or raise an exception regarding arguments presence, absence or type.

In practice, same-name commands will only be met when two 3rd party apps override a Django core management command. They will therefore derive from the same Command base class, and cause no issue in 99.9% of the cases.

django-mcmo may also emmit warning messages if the same option is explicitly added in the same command of two distinct apps with command classes not being subclasses of each other.

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-mcmo-2.0.1.zip (11.1 kB view details)

Uploaded Source

File details

Details for the file django-mcmo-2.0.1.zip.

File metadata

  • Download URL: django-mcmo-2.0.1.zip
  • Upload date:
  • Size: 11.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for django-mcmo-2.0.1.zip
Algorithm Hash digest
SHA256 f35c57c9e90b6fbb840742dd934e120db0fda1d56c537180793282303de73dca
MD5 349412b2d1c9118989569b8f4eee8adb
BLAKE2b-256 1a6ecf884d949cef27fdac3efd9558587edc8f5e653263842a6a00c4ab135659

See more details on using hashes here.

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