Skip to main content

Easy config (template, auto-complete), hierarchichal design, monitor config change and load on-the-fly .

Project description

Overview

Version CI Status Code Coverage Downloads License Style

A python config module that:

  1. Adaptive deployment (default, dev, test, production) support
  2. Cascading configuration (central vs local) support
  3. Auto-complete
  4. Templates (logging, database, cache, message queue,...)
  5. Environment variables macro support
  6. Enable logging in one line
  7. Built on top of yaml

Features

It's common to see that you have different settings for development machine, test machine and production site. They share many common settings, but a few of them has to be different.

For example, developers should connect to local database server when performing unittest, and tester should connect to their own database server. All these servers should be deployed separately and no data should be messed up.

Cfg4Py has perfect solution supporting for this: adaptive deployment environment support.

Adaptive Deployment Environment Support

In any serious projects, your application may run at both development, testing and production site. Except for effort of copying similar settings here and there, sometimes we'll mess up with development environment and production site. Once this happen, it could result in very serious consequence.

To solve this, Cfg4Py developed a mechanism, that you provide different sets for configurations: dev for development machine, test for testing environment and production for production site, and all common settings are put into a file called defaults.

cfg4py module knows which environment it's running on by looking up environment variable cfg4py_server_role. It should be one of DEV, TEST and PRODUCTION. If nothing found, it means setup is not finished, and Cfg4Py will refuse to work. If the environment is set, then Cfg4Py will read settings from defaults set, then apply update from either of DEV, TEST and PRODUCTION set, according to the environment the application is running on.

!!! important

Since 0.9.0, cfg4py can still work if __cfg4py_server_role__ is not set, when it work at non-strict mode.

Cascading design

Assuming you have a bunch of severs for load-balance, which usually share same configurations. So you'd like put the configurations on a central repository, which could be a redis server or a relational database. Once you update configuration settings at central repository, you update configurations for all servers. But somehow for troubleshooting or maintenance purpose, you'd like some machines could have its own settings at a particular moment.

This is how Cfg4Py solves the problem:

  1. Configure your application general settings at remote service, then implement a RemoteConfigFetcher (Cfg4Py has already implemented one, that read settings from redis), which pull configuration from remote serivce periodically.
  2. Change the settings on local machine, after the period you've set, these changes are popluated to all machines.

Auto-complete

auto-complete

With other python config module, you have to remember all the configuration keys, and refer to each settings by something like cfg["services"]["redis"]["host"] and etc. Keys are hard to rememb, prone to typo, and way too much tedious.

When cfg4py load raw settigns from yaml file, it'll compile all the settings into a Python class, then Cfg4Py let you access your settings by attributes. Compares the two ways to access configure item:

        cfg["services"]["redis"]["host"]

vs:

        cfg.services.redis.host

Apparently the latter is the better.

And, if you trigger a build against your configurations, it'll generate a python class file. After you import this file (named 'schema.py') into your project, then you can enjoy code auto-complete!

Templates

It's hard to remember how to configure log, database, cache and etc, so cfg4py provide templates.

Just run cfg4py scaffold, follow the tips then you're done.

scaffold

Environment variables macro

The best way to keep secret, is never share them. If you put account/password files, and these files may be leak to the public. For example, push to github by accident.

With cfg4py, you can set these secret as environment variables, then use marco in config files. For example, if you have the following in defaults.yaml (any other files will do too):

        postgres:
                dsn: postgres://${postgres_account}:${postgres_password}@localhost

then cfg4py will lookup postgres_account, postgres_password from environment variables and make replacement.

Enable logging with one line

with one line, you can enable file-rotating logging:

    cfg.enable_logging(level, filename=None)

Apply configuration change on-the-fly

Cfg4Py provides mechanism to automatically apply configuration changes without restart your application. For local files configuration change, it may take effect immediately. For remote config change, it take effect up to refresh_interval settings.

On top of yaml

The raw config format is backed by yaml, with macro enhancement. YAML is the best for configurations.

Credits

This package was created ppw

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

cfg4py-0.9.4.tar.gz (18.8 kB view details)

Uploaded Source

Built Distribution

cfg4py-0.9.4-py3-none-any.whl (16.2 kB view details)

Uploaded Python 3

File details

Details for the file cfg4py-0.9.4.tar.gz.

File metadata

  • Download URL: cfg4py-0.9.4.tar.gz
  • Upload date:
  • Size: 18.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for cfg4py-0.9.4.tar.gz
Algorithm Hash digest
SHA256 935fb7879527d37bb5ade59052916c06605379b17ffe44e09c16031cb0a2caba
MD5 222d39010995f36145fc054259ac3fb5
BLAKE2b-256 26d892d933af4f8e4e10f08aa100c1c736d06b34c9d6d3874e41c3369c45f1a6

See more details on using hashes here.

File details

Details for the file cfg4py-0.9.4-py3-none-any.whl.

File metadata

  • Download URL: cfg4py-0.9.4-py3-none-any.whl
  • Upload date:
  • Size: 16.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for cfg4py-0.9.4-py3-none-any.whl
Algorithm Hash digest
SHA256 02a451c83e6c770ad5ebae7fc656c24fe1bab8d264e44691b95165e730fcb2f6
MD5 002430cc640cc4028c13a6871c4d5e72
BLAKE2b-256 1c1462301c7cef12ae233804f4709ff09188bf62ad0ef8f468e6f70656b1f7ef

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 Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page