forked from Botanical/BotanJS
6 lines
165 B
Python
6 lines
165 B
Python
|
#!/usr/bin/env python3
|
||
|
import configparser
|
||
|
|
||
|
Config = configparser.ConfigParser( interpolation = configparser.ExtendedInterpolation() )
|
||
|
Config.read( "settings.ini" )
|