Skip to main content

Effortless class-based settings for Django.

Project description

django-class-settings

pypi django versions python build coverage license code style

django-class-settings aims to simplify complicated settings layouts by using classes instead of modules. Some of the benefits of using classes include:

Example

# .env
export DJANGO_SECRET_KEY='*2#fz@c0w5fe8f-'
export DJANGO_DEBUG=true
# manage.py
import os
import sys

import class_settings
from class_settings import env

from django.core.management import execute_from_command_line

if __name__ == '__main__':
    env.read_env()
    os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'myproject.settings')
    os.environ.setdefault('DJANGO_SETTINGS_CLASS', 'MySettings')
    class_settings.setup()
    execute_from_command_line(sys.argv)
# myproject/settings.py
from class_settings import Settings, env


class MySettings(Settings):
    SECRET_KEY = env()
    DEBUG = env.bool(default=False)
    INSTALLED_APPS = [
        'django.contrib.admin',
        'django.contrib.auth',
        'django.contrib.contenttypes',
        'django.contrib.sessions',
        'django.contrib.messages',
        'django.contrib.staticfiles',
    ]
    ROOT_URLCONF = 'myproject.urls'
    WSGI_APPLICATION = 'myproject.wsgi.application'

Installation

Install it from PyPI with pip:

pip install django-class-settings

Requirements

  • Django 1.11+
  • Python 3.5+

Resources

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-class-settings-0.2.0.tar.gz (9.3 kB view details)

Uploaded Source

Built Distribution

django_class_settings-0.2.0-py3-none-any.whl (9.7 kB view details)

Uploaded Python 3

File details

Details for the file django-class-settings-0.2.0.tar.gz.

File metadata

  • Download URL: django-class-settings-0.2.0.tar.gz
  • Upload date:
  • Size: 9.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.0.0 CPython/3.8.1 Linux/5.4.6-arch3-1

File hashes

Hashes for django-class-settings-0.2.0.tar.gz
Algorithm Hash digest
SHA256 8d84b2df9130386360f7ef87d79de88dcb2784ff878682aedd29d866fe2dfb48
MD5 22d589a246c7d4f9e12b8defa05f1db6
BLAKE2b-256 b9b68d982c987dd487cdcc53d69306ba4b78064491b8c8fb498c3f4591ed2416

See more details on using hashes here.

File details

Details for the file django_class_settings-0.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for django_class_settings-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 87edb69a4077d8badb751f9e02fa68cbe849c1639a33f9ca2e7df8c1b7d3b994
MD5 f1b8d2114651c91a359d2a4fd70e50b4
BLAKE2b-256 c7c837dd1d20359a7f2212c004534edfa7bb6f06710933f7cd704b18f322c7cb

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