The ini file parser.
To install a wheel from PyPI,
pip install --upgrade ini-klass
Example ini file,
[example]
id = 12
name = John
status = true
salary = 100.50
group = car, book, phone
To parse ini file above,
from ini import IniConfig
# read from `CONFIG` environment
config = IniConfig.read()
# read from file
config = IniConfig.read('/tmp/file.ini')
# access configuration value
name = config.example.name