如何在python中处理配置文件代码实例

Chipo ·
更新时间:2024-11-13
· 644 次阅读

配置文件是一种计算机文件,可以为一些计算机程序配置参数和初始设置,在内容形式上是一个一个键值对的记录。

testcase.yaml文件:

excel:
filename: "testcase.xlsx"

将yaml库做二次封装:

import yaml class HandleYaml: def __init__(self, filename=None): if filename is None: self.filename = 'testcase.yaml' else: self.filename = filename with open(filename, encoding="utf-8") as file: # 用上下文管理器打开yaml配置文件 self.data = yaml.full_load(file) # 加载yaml文件,返回一个嵌套字典的字典 def get_data(self, section, option): return self.data[section][option] if __name__ == "__main__": s = HandleYaml() s.get_data('excel', 'filename') 您可能感兴趣的文章:Python logging日志模块 配置文件方式Python基于yaml文件配置logging日志过程解析python logging通过json文件配置的步骤python读取配置文件方式(ini、yaml、xml)使用python检查yaml配置文件是否符合要求Python读取配置文件(config.ini)以及写入配置文件Python使用configparser库读取配置文件Python3中configparser模块读写ini文件并解析配置的用法详解



在python中 配置文件 Python

需要 登录 后方可回复, 如果你还没有账号请 注册新账号