AstroJS/botanjs/config.py

8 lines
201 B
Python
Executable File

#!/usr/bin/env python3
import configparser
Config = configparser.ConfigParser( interpolation = configparser.ExtendedInterpolation() )
Config.read( "settings.ini" )
DEBUG = Config[ "Env" ][ "Debug" ]