diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2023-09-11 22:06:09 +0200 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2023-09-11 22:06:09 +0200 |
commit | 76a9a93d72ad3ff21854f532d64aca42c72c1ebf (patch) | |
tree | aa928009aebd154eb59001ea73fa47524efd9c11 /run.py | |
parent | ba5ad1cb135cee769e92dd9b125e232db6ca6fb7 (diff) | |
download | meteo_toolbox-76a9a93d72ad3ff21854f532d64aca42c72c1ebf.tar.gz |
confi reader
Diffstat (limited to 'run.py')
-rwxr-xr-x | run.py | 19 |
1 files changed, 19 insertions, 0 deletions
@@ -0,0 +1,19 @@ +#!/usr/bin/env python3 + +import sys +import yaml + +FILE = 'config.yaml' +if len(sys.argv) > 1: + FILE = sys.argv[1] + +conf = None +with open(FILE, 'r') as f: + conf = yaml.safe_load(f) + +for plotter in conf['plotter']: + modname = plotter['module'] + del plotter['module'] + + mod = __import__(modname) + mod.run(**plotter) |