1. 程式人生 > 程式設計 >Python使用configparser庫讀取配置檔案

Python使用configparser庫讀取配置檔案

這篇文章主要介紹了Python使用configparser庫讀取配置檔案,文中通過示例程式碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下

背景:

在寫介面自動化框架,配置資料庫連線時,測試環境和UAT環境的連線資訊不一致,這時可以將連線資訊寫到conf或者cfg配置檔案中

python環境請自行準備。

python程式碼直接封裝成類,方便其他模組的引入。

from configparser import ConfigParser

class DoConfig:
  def __init__(self,filepath,encoding='utf-8'):
    self.cf = ConfigParser()
    self.cf.read(filepath,encoding)

  #獲取所有的section
  def get_sections(self):
    return self.cf.sections()

  #獲取某一section下的所有option
  def get_option(self,section):
    return self.cf.options(section)

  #獲取section、option下的某一項值-str值
  def get_strValue(self,section,option):
    return self.cf.get(section,option)

  # 獲取section、option下的某一項值-int值
  def get_intValue(self,option):
    return self.cf.getint(section,option)

  # 獲取section、option下的某一項值-float值
  def get_floatValue(self,option):
    return self.cf.getfloat(section,option)

  # 獲取section、option下的某一項值-bool值
  def get_boolValue(self,option):
    return self.cf.getboolean(section,option)

  def setdata(self,option,value):
    return self.cf.set(section,value)

if __name__ == '__main__':
  cf = DoConfig('demo.conf')
  res = cf.get_sections()
  print(res)
  res = cf.get_option('db')
  print(res)
  res = cf.get_strValue('db','db_name')
  print(res)
  res = cf.get_intValue('db','db_port')
  print(res)
  res = cf.get_floatValue('user_info','salary')
  print(res)
  res = cf.get_boolValue('db','is')
  print(res)

  cf.setdata('db','db_port','3306')
  res = cf.get_strValue('db','db_port')
  print(res)

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援我們。