Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 962 Bytes

README.md

File metadata and controls

31 lines (22 loc) · 962 Bytes

EasyCo

Build Status Documentation Status

Easy Configuration with YAML files

Goal

The goal of EasyCo is to provide an easy way of Configuration using YAML files for Python programs. It can automatically create a default configuration from provided default values and will validate the provided data.

Documentation

The documentation can be found at here

Example

from EasyCo import ConfigFile, ConfigContainer

class MyContainer(ConfigContainer):
    SubValueA: int
    SubValueB: int = 7

class MyConfigFile(ConfigFile):
    ConfValueA: int = 5
    ConfValueB: float = 5.5

    sub_values = MyContainer()
    
cfg = MyConfigFile('test')
cfg.load()