1. 程式人生 > >python配置檔案處理模組

python配置檔案處理模組

import configparser

class ReadConfig:
    '''read config file'''
    def read_config(self,file_path,section,option):
        cf = configparser.ConfigParser()
        cf.read(file_path,encoding="utf-8")
        res = cf.get(section,option)
        return res