我是 python 新手,开始编写一些系统管理实用程序,应该从 INI 文件中读取信息
现在我需要初始化一个基于 ini 部分的类,我的问题是如何通过以下示例发送所有 infoe 参数 key val
请指教 谢谢
class FopsTest():
def __init__(self,**kwargs):
self.variables = kwargs
def set_foptype(self,FILEOP):
self.variables['FILEOP'] = FLOPTYPE
cfgfile = os.getcwd() +'\wtrconfig.cfg'
config = configparser.ConfigParser()
try:
os.path.exists(cfgfile)
config.sections()
config.read(cfgfile)
test = FopsTest(<pass ini key,val?>)