Giter Site home page Giter Site logo

djappsettings's Introduction

DjAppSettings: Per-App Settings for Django

  • I hate pasting blobs into my settings.py every time I enable an app.
  • This is a Python module which provides a sane way for reusable Django apps to configure themselves.
  • It's a drop-in replacement for the django.conf.settings class. You can fetch all of your project, app, and global default settings via a single settings object.
  • It doesn't touch your project's settings module, and existing Django apps are free to ignore it. Your app can even fall back to the usual method if this module isn't available.
  • App settings are prevented from clobbering built-in settings. They can only add settings.
  • Project settings (in DJANGO_SETTINGS_MODULE) override app settings.
  • Using per-app prefixes is a good idea, but not mandatory.

But, but

  • I'm aware of Jared Forsyth's django-appsettings, and I think it's lovely but wrong. Project settings should not be editable in the Django admin.
  • I'm also aware that this feature has been rejected numerous times on the Django trac. But pasting a bunch of junk into my settings.py each time I add an app is a pain in the ass.
  • Checking for a setting (via settings.hasattr), and falling back to a hard-coded default value is a terrible solution, because your defaults are duplicated and buried. They should be easily discoverable.

Usage

Where you would usually do something like:

from django.conf import settings
getattr(settings, "MY_SETTING", "DEFAULT")

Create a settings.py file in your app, containing:

MY_SETTING = "DEFAULT"

and do something like:

from djappsettings import settings
settings.MY_SETTING

If you'd like to support this module where available, but fall back to the usual method if not, just try it:

try: from djappsettings import settings
except: from django.conf import settings
settings.MY_SETTING

Installation

Via Pip:

$ pip install djappsettings

Via GitHub:

$ git clone git://github.com/adammck/djappsettings.git
$ python djangoappsettings/setup.py install

Bugs?

This was created to scratch an itch for the RapidSMS project. I hope it will be useful to you, but it doesn't have any docs or tests yet, and hasn't been field tested. There are almost certainly bugs. Use it at your own risk. (But do use it, because it's way better.)

Patches and pull requests are very welcome. Please file bugs on GitHub.

License

djappsettings is free software, available under the BSD license.

djappsettings's People

Contributors

adammck avatar zlorf avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.