File size: 153 Bytes
748e637
 
 
 
 
 
1
2
3
4
5
6
import yaml

def api_configs(config_file):
    with open(config_file, 'r') as f:
        db_config = yaml.safe_load(f)
    return db_config["api_config"]