4 lines
98 B
Python
4 lines
98 B
Python
import yaml
|
|
|
|
with open('config.yml', 'r') as config_file:
|
|
config = yaml.safe_load(config_file) |