Skip to main content

django-kungfu

django-kungfu provides the ability to set-up the Django configuration mechanism so it’s fairly easy to integrate development or deployment-related settings overrides.

The idea came after I used for a while the beatiful configuration system implemented in Flask. In fact, the majority of the code was inspired by the Flask implementation located here.

Usage by example

The integration with your Django project is fairly easy and depends on your preferences. One possible set-up could look like this:

# At the bottom of your/settings.py file just add the following lines
from django_kungfu import Configurator
config = Configurator(locals())
config.from_pyfile(os.path.join(os.path.dirname(__file__), 'dev_settings.py'))
config.from_envvar('DJANGO_SETTINGS_OVERRIDE')

In short, this is what happens when the django settings file is loaded: # if the dev_settings.py file is found in the same directory as the settings file, all the upper-case constants are loaded into local context overriding the existing ones # if the DJANGO_SETTINGS_OVERRIDE environment variable is set and is pointing to a valid configuration file, that configuration file is loaded in the same way

By default, if the specified files or environment variables are not found or are not valid, the configurator will fail silently. This is useful for example when using development settings which are not available in a production system and we want to keep a single settings file as a configuration entry point.

If you want to enforce the presence of a particular configuration file or environment variable you can use silent=False with the respective methods.

Having this configuration, you can easily set-up a production environment by setting the appropriate environment variable in you production wsgi file:

# prod.wsgi
import os

os.environ.setdefault("DJANGO_SETTINGS_MODULE", "myproject.settings")
os.environ.setdefault("DJANGO_SETTINGS_OVERRIDE",
                      os.path.expanduser("~/etc/myproject/prod_settings.py"))

from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()

Why kungfu?

This name was selected because kungfu pronounced in my natal language (a regional dialect of Romanian) sounds similar to config (confu). And of course my sympathy for martial arts, and especially for kung fu, brought a few points.

Release files for django-kungfu 0.2

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for django-kungfu 0.2
File Size Uploaded
django-kungfu-0.2.tar.gz 4.0 kB Details

Release files / django-kungfu-0.2.tar.gz

Download URL django-kungfu-0.2.tar.gz
Size 4.0 kB
Tags Source
SHA-256 checksum
How to use checksums
1620f90c35264fabf06bb3b2d3a6200c8ba2f9a855d38f233c4cf1f98b5f19e8
BLAKE2b-256 checksum
How to use checksums
6f636cdb8f87acb6f2ffb09ce05d0e78f16fe965d9c82aeef0367e962d2c6baf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release history Release notifications | RSS feed

This release

0.2 This release

1 release file

0.1.1

0.1

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page