AstroJS/botanjs/config.py

8 lines
201 B
Python
Raw Normal View History

2015-08-14 10:12:10 +00:00
#!/usr/bin/env python3
import configparser
Config = configparser.ConfigParser( interpolation = configparser.ExtendedInterpolation() )
Config.read( "settings.ini" )
2016-05-27 16:20:58 +00:00
DEBUG = Config[ "Env" ][ "Debug" ]