1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
theorangeone.net-legacy/config/__init__.py

14 lines
238 B
Python
Raw Normal View History

2016-09-08 21:50:22 +01:00
import yaml
import os.path
2017-01-13 21:41:40 +00:00
settings_dir = os.path.dirname(__file__)
2016-09-08 21:50:22 +01:00
2017-01-13 21:41:40 +00:00
def get_config(filename):
with open(os.path.join(settings_dir, '{}.yml'.format(filename))) as f:
return yaml.safe_load(f)
2016-09-08 21:50:22 +01:00
2017-01-13 21:41:40 +00:00
social = get_config('social')