6 lines
117 B
Python
6 lines
117 B
Python
|
import configparser
|
||
|
|
||
|
config = configparser.ConfigParser(allow_no_value=True)
|
||
|
config.read('config-and-secrets.conf')
|
||
|
|