Skip to main content

A very simple settings configurable in Django Admin Panel.

Project description

Supported types: bool, float, int, str.

https://badge.fury.io/py/django-simple-settings.png https://api.travis-ci.org/alikus/django-simple-settings.png https://coveralls.io/repos/alikus/django-simple-settings/badge.png?branch=master

Installation

  1. Install a package.

$ pip install django-simple-settings
  1. Add “simple_settings” to your INSTALLED_APPS setting:

INSTALLED_APPS = (
    ...
    'simple_settings',
)
  1. Add context processor if you would like:

TEMPLATE_CONTEXT_PROCESSORS = (
    '...',
    'simple_settings.context_processors.simple_settings',
)
  1. Create models:

$ python manage.py migrate || python manage.py syncdb

Usage

Get settings:

from simple_settings import settings

print settings.get('is_feature_available')
print settings.get('is_feature_available', default=False)
print settings['is_feature_available']

Get all settings as dict:

print settings.all()

Get settings in template if you include context processor:

{{ simple_settings.is_feature_available }}

Set settings:

settings.set('is_feature_available', True)
settings.set('pi', 3.14159265359)
settings.set('answer', 42)
settings.set('metallica', 'Yeah!')

Delete settings:

settings.delete('is_feature_available')

Settings

Default application settings can be overriden in settings.py:

SIMPLE_SETTINGS_CACHE_TIMEOUT = 60 * 60 * 24 #  default cache timeout is one day
SIMPLE_SETTINGS_CACHE_ALIAS = 'default' # default cache backend

Requirements

  • Python 2.6, 2.7, 3.3

  • Django 1.3+

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-simple-settings-0.3.1.tar.gz (4.7 kB view details)

Uploaded Source

File details

Details for the file django-simple-settings-0.3.1.tar.gz.

File metadata

File hashes

Hashes for django-simple-settings-0.3.1.tar.gz
Algorithm Hash digest
SHA256 81f1b360834831218b7f17d27ac0da2653fc90cfb6992a93f05af9ac99388cf0
MD5 91de1c2612f75151621de7da70126423
BLAKE2b-256 e1476b02db76763ad6507cd64d3660ccff795014bd97536cf8619a853522eff5

See more details on using hashes here.

Supported by

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