Spaces:
GIZ
/
Running on CPU Upgrade

SDSN-demo / utils /checkconfig.py
prashant
final fix in SDG
fc140bc
raw
history blame
248 Bytes
import configparser
import logging
def getconfig(configFilePath):
config = configparser.ConfigParser()
try:
config.read_file(open(configFilePath))
return config
except:
logging.warning("config file not found")