【Python】读取ini配置文件

环境配置信息保存在ini文件中,python读取ini配置文件方法

[LoginElement]
username = id > userid
password = id > password

 

class ReadIni:

    def get_value(self, section, key):
        curpath = os.path.abspath(os.path.join(os.getcwd(), "../config"))
        cfgpath = os.path.join(curpath, LocalElement.ini)
        # 创建管理对象
        conf = configparser.ConfigParser()

        # 读ini文件
        conf.read(cfgpath)

        # 获取所有的section
        sections = conf.sections()
        print(sections)

        # 获取指定section下面的key/value值
        # items = conf.items(‘LoginElement‘)
        value = conf[section][key]
        return value


ri = ReadIni()
ReadIni.get_value(ri, LoginElement, username)

 

【Python】读取ini配置文件

上一篇:U3D 打包时找不到tag的问题


下一篇:HDU 1312 Red and Black DFS(深度优先搜索) 和 BFS(广度优先搜索)