File size: 322 Bytes
36c50ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import yaml
def read_yaml(config_path):
"""
Read YAML file.
:param config_path: path to the YAML config file.
:type config_path: str
:return: dictionary correspondent to YAML content
:rtype dict
"""
with open(config_path, 'r') as f:
config = yaml.safe_load(f)
return config
|