Skip to main content

JSON secrets to Django settings module

Project description

JSON secrets to Django settings module

Setup

  • install it via pip install django-json-secrets

Usage

  • Setup ‘SECRET_DIR’ to settings module

    SECRETS_DIR = os.path.join(ROOT_DIR, '.secrets')
  • Import library function

    from djs import import_secrets
  • Execute function

    import_secrets()
  • If there is a Python module needed to eval() the value of the secrets, define it in SECRETS_MODULES

    import requests
    
    SECRETS_MODULES = {
        'raven': 'raven',
        'requests': requests,
    }

Contributing

As an open source project, we welcome contributions.

The code lives on github.

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-json-secrets-0.1.11.tar.gz (4.7 kB view hashes)

Uploaded Source

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