Skip to main content

An entry-point based solution to extendthe Django configuration.

Project description

django-extraconfig

With django-extraconfig it’s easy to extend a Django project settings.py file. The only function provided by this module is load_extraconfig(entry_point_name, module_name).

extraconfig.load(entry_point_name, module_name)

Loads all uppercase values from the entry point modules into the module with the name module_name overriding any existing values.

Usage

At the bottom of your settings.py file add:

try:
    import extraconfig
except ImportError:
    pass
else:
    extraconfig.load(<entry_point_name>, __name__)

entry_point_name can be any string value but it’s a good practice to include the projectname in order to avoid name collisions. For example to load the extra configuration showed below, entry_point_name should be set to “my_project.extraconfig”.

Creating an extra configuration

It’s easy to create an extra configuration module. The minimal project layout is composed of two files: setup.py and the module file. The module will be installed using the setup.py file just like any other regular Python module. In order for django-extraconfig to know that this module should be used to override your Django configuration in setup.py you must add it in the entry point config.

A minimal setup.py file can look like this:

from setuptools import setup

setup(
    name='my_extra_config',
    version='0.1',
    py_modules=['my_extra_config'],
    entry_points = {
        'my_project.extraconfig': 'main = my_extra_config'
    }
)

Now you can add a my_extra_config.py file with the settings you want to override:

DEBUG = True

Installing the extra configuration

Once the extra configuration project is ready you can run:

python setup.py develop

This will install the extra configuration module in development mode, meaning you can edit the extra settings and all the changes will be visible without reinstalling it.

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-extraconfig-0.1.1.tar.gz (2.1 kB view details)

Uploaded Source

File details

Details for the file django-extraconfig-0.1.1.tar.gz.

File metadata

File hashes

Hashes for django-extraconfig-0.1.1.tar.gz
Algorithm Hash digest
SHA256 45db7666494ed749022566b4053d5caf302ebe033dcce7ba350e1855e1229f37
MD5 63899d76f9f7a6e18645af1baf4e6a24
BLAKE2b-256 13db909b9f86b9e1173fee96318efd532487399f4408b214a8531b7d7f624417

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