summaryrefslogtreecommitdiff
path: root/src/home/config/config.py
diff options
context:
space:
mode:
authorEvgeny Zinoviev <me@ch1p.io>2022-05-31 23:53:38 +0300
committerEvgeny Zinoviev <me@ch1p.io>2022-05-31 23:53:38 +0300
commit2aa2f968722e48e0c642bd6cf2d8a54db7a6d182 (patch)
treef669602305835dd65ec3bce247e0989fbb2bb721 /src/home/config/config.py
parente863761a32e3cda386d7c581f2adf6ed7b70e075 (diff)
config: support yaml
Diffstat (limited to 'src/home/config/config.py')
-rw-r--r--src/home/config/config.py34
1 files changed, 27 insertions, 7 deletions
diff --git a/src/home/config/config.py b/src/home/config/config.py
index 40aa476..0c09f6e 100644
--- a/src/home/config/config.py
+++ b/src/home/config/config.py
@@ -1,4 +1,5 @@
import toml
+import yaml
import logging
import os
@@ -8,14 +9,25 @@ from argparse import ArgumentParser
def _get_config_path(name: str) -> str:
+ formats = ['toml', 'yaml']
+
dirname = join(os.environ['HOME'], '.config', name)
- filename = join(os.environ['HOME'], '.config', f'{name}.toml')
+
if isdir(dirname):
- return join(dirname, 'config.toml')
- elif isfile(filename):
- return filename
+ for fmt in formats:
+ filename = join(dirname, f'config.{fmt}')
+ if isfile(filename):
+ return filename
+
+ raise IOError(f'config not found in {dirname}')
+
else:
- raise IOError(f'configuration file not found (tried {dirname}/config.toml and {filename})')
+ filenames = [join(os.environ['HOME'], '.config', f'{name}.{format}') for format in formats]
+ for file in filenames:
+ if isfile(file):
+ return file
+
+ raise IOError(f'config not found')
class ConfigStore:
@@ -64,7 +76,15 @@ class ConfigStore:
if not no_config and path is None:
path = _get_config_path(name)
- self.data = {} if no_config else toml.load(path)
+ if no_config:
+ self.data = {}
+ else:
+ if path.endswith('.toml'):
+ self.data = toml.load(path)
+ elif path.endswith('.yaml'):
+ with open(path, 'r') as fd:
+ self.data = yaml.safe_load(fd)
+ print('loaded yaml config:', self.data)
if 'logging' in self:
if not log_file and 'file' in self['logging']:
@@ -109,5 +129,5 @@ def setup_logging(verbose=False, log_file=None, default_fmt=False):
if log_file is not None:
log_config['filename'] = log_file
log_config['encoding'] = 'utf-8'
-
+
logging.basicConfig(**log_config)