d4186e0e43
* adafruit screen test script * mainloop with threads * a mostly finished screen thread * a partly finished blocklist update thread
8 lines
171 B
Python
8 lines
171 B
Python
import configparser
|
|
import logging
|
|
|
|
log = logging.getLogger("main")
|
|
|
|
log.debug("reading configuration file")
|
|
cparse = configparser.ConfigParser()
|
|
cparse.read("config.ini") |