Git Product home page Git Product logo

generalize-config's Introduction

generalize-config

PyPI PyPI - Python Version GitHub

Read and generalize the configuration

Overview

A list of variables required for a program's execution environment can be obtained in several ways:

  • Environment Variables
  • Configuration files
  • Command-line arguments
  • etc ...

Especially if you're deploying as a container, you need to reference a file like /run/secrets/... (docker swarm secret) to read the variable.

I developed the generalize-config library because I needed a way to unify environment variables from multiple places into one.

Features

Installation

pip install generalize-config

Usage

Configuration file

Reading extension-based configuration files

envs:
  host: localhost
  port: 8080
from argparse import Namespace
from generalize_config import read_config_file

config = read_config_file("/path/config/file.yml", "envs", encoding="utf-8")
assert isinstance(config, Namespace)
assert "localhost" == config.host
assert 8080 == config.port

The supported extension types are:

  • YAML extensions: .yml, .yaml
  • JSON extensions: .json
  • CFG extensions: .cfg, .ini

โš ๏ธ When using a CFG file, there must be 1 subsection argument.

Environment variable

Environment Variable Filtering

from argparse import Namespace
from generalize_config import read_os_envs

# APP_HTTP_HOST_VALUE=localhost
config = read_os_envs(prefix="APP_", suffix="_VALUE")
assert isinstance(config, Namespace)
assert "localhost" == config.http_host

Filter environment variables and read files:

from argparse import Namespace
from generalize_config import read_os_envs_file

# APP_DATABASE_PASSWORD_FILE=/run/secrets/password
config = read_os_envs_file(prefix="APP_", suffix="_FILE")
assert isinstance(config, Namespace)
assert isinstance(config.database_password, str)

Merge namespaces

from argparse import Namespace, ArgumentParser
from generalize_config import merge_left_first

parser = ArgumentParser()
# add_argument ...
args = parser.parse_known_args()[0]

result = Namespace()
merge_left_first(result, args, ...)
print(result)

Generalized method

The recommended reading order is:

  1. Fixed variable (higher priority)
  2. Command line arguments
  3. Configuration file received as a command line argument
  4. Environment Variables
  5. Configuration file received as environment variable
  6. Environment variable pointing to file
  7. Default variable (low priority)

The function that implements the above is read_generalize_configs:

from argparse import ArgumentParser, Namespace
from generalize_config import read_generalize_configs

parser = ArgumentParser()
# add_argument ...

default_args = Namespace(...)

result = read_generalize_configs(
    parser=parser,
    subsection="application",
    env_prefix="ENV_",
    env_suffix="_FILE",
    config_key="config",
    default=default_args,
)
print(result)

Things to know

When using argparse.ArgumentParser you need to make sure that all values not entered are returned as None. Otherwise, the merge_left_first function may malfunction.

Also, variables acquired through CFG files and environment variables are fixed as string type. To solve this you need to deserialize like this:

Install type-serialize:

pip install type-serialize

Add type annotation to Namespace and then call deserialize:

from argparse import Namespace
from generalize_config import read_generalize_configs
from type_serialize import deserialize

class Config(Namespace):
    host: str
    port: int
    # ...

ns = read_generalize_configs(...)
config = deserialize(ns, Config)
assert isinstance(config, Config)

print(config)

License

See the LICENSE file for details. In summary, generalize-config is licensed under the MIT license.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.