python写的读取json配置文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python写的读取json配置文件相关的知识,希望对你有一定的参考价值。

配置文件默认为conf.json

使用函数set完成追回配置项。

使用load或取配置项。

代码如下:

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
‘‘‘
json配置文件类,调用方法
data_dict = {"a":"1", "b":"2"}
JsonConf.set(data_dict)
即可在当前目录下生成json文件:config.json
‘‘‘
import json 
import os
class JsonConf:
    ‘‘‘json配置文件类‘‘‘
    @staticmethod
    def store(data):
        with open("config.json", ‘w‘) as json_file:
            json_file.write(json.dumps(data, indent=4))
    @staticmethod  
    def load():
        if not os.path.exists(‘config.json‘):
            with open("config.json", ‘w‘) as json_file:
                pass       
        with open(‘config.json‘) as json_file:
            try:
                data = json.load(json_file)
            except:
                data = {}
            return data
        
    @staticmethod
    def set(data_dict):
        json_obj = JsonConf.load()
        for key in data_dict:
            json_obj[key] = data_dict[key]
        JsonConf.store(json_obj)
        print(json.dumps(json_obj, indent=4))
        
    
if __name__=="__main__":
    data = {"a":" 1", "f":"100","b":"3000"}
    JsonConf.set(data)

以上是关于python写的读取json配置文件的主要内容,如果未能解决你的问题,请参考以下文章

python 读取配置文件转成JSON连接数据库

算是帮华仔写的撸JSON文件,然后发到我的REST接口的PYTHON代码

VS Code配置markdown代码片段

VS Code配置markdown代码片段

python常用代码片段总结

Python:使用 ConfigParser vs json 文件 [关闭]