Skip to main content

Python dict that supports common app configuration-loading scenarios.

Project description

https://travis-ci.org/adblair/configloader.svg?branch=master https://coveralls.io/repos/adblair/configloader/badge.svg?branch=master&service=github https://img.shields.io/pypi/dm/configloader.svg

ConfigLoader is a Python dictionary subclass that provides convenience methods for common app configuration-loading scenarios, inspired by flask.Config.

Features

Easily load config settings from:

  • Python modules, classes or objects

  • JSON files

  • YAML files

  • Environment variables

Supports Python 2.6+ and 3.3+.

Installation

Install ConfigLoader from PyPI using pip:

pip install configloader[all]

The [all] indicates that all optional dependencies (AttrDict and PyYAML) should be installed.

Example usage

>>> from configloader import ConfigLoader
>>> config = ConfigLoader
>>> config.update_from_object('my_app.settings')
>>> config.update_from_yaml_env('YAML_SETTINGS_PATH')

Documentation

https://configloader.readthedocs.org/en/stable/

Supported by

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