Metadata-Version: 2.1
Name: bn-configuration
Version: 0.0.4
Summary: configuration loader
Home-page: https://gitlab.com/bynubian/bynode/python_packages/configuration
Author: jovi
Author-email: jo.vinckier@bynubian.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# Configuration


## About
Tool to retrieve configuration data, either for .ENV or .ini files

## get started
- provide configuration data using:
  - .ENV: FOO_BAR = hello 
  - .ini: located in same dir as executing script, can be from multiple files
  [foo]
  bar = hello

- retrieve: 
    - MyConfig('foo').get('bar')
    - MyConfig('foo', ['bar']).bar









