comments and README.md

This commit is contained in:
2023-09-28 17:08:50 +02:00
parent 68311135bf
commit 945b9c2195
6 changed files with 298 additions and 58 deletions

View File

@@ -1,6 +1,12 @@
import configparser
from os import path
"""
Reads the config files and stores the config into settings dictionary.
This dictionary can be then used in the application to access config values.
"""
# parse base config file
config = configparser.ConfigParser()
config_path = path.dirname(path.abspath(__file__))