10 lines
178 B
Python
10 lines
178 B
Python
#!/usr/bin/env python
|
|
# encoding: utf-8
|
|
import yaml
|
|
|
|
CONFIGPATH = "recoconfig.yml"
|
|
|
|
with open(CONFIGPATH, "r") as config:
|
|
config = yaml.load(config, Loader=yaml.FullLoader)
|
|
|