Use python to modify the value of the json file

    When doing a project, it is necessary to monitor the json file and make corresponding processing according to the key-value value in the json file. For this purpose, a python script that modifies the json file is written for subsequent calls by the project.

    code show as below:

# coding=utf-8 //Set the text format
import os,sys
import json
def get_new_json(filepath,key,value):
	key_ = key.split(".")
	key_length = len(key_)
	with open(filepath, 'rb') as f:
		json_data = json.load(f)
		i = 0
		a = json_data
		while i < key_length :
			if i+1 == key_length :
				a[key_[i]] = value
				i = i + 1
			else :
				a = a[key_[i]]
				i = i + 1
	f.close()
	return json_data
	
def rewrite_json_file(filepath,json_data):
	with open(filepath, 'w') as f:
		json.dump(json_data,f)
	f.close()

if __name__ == '__main__':
	
	key = sys.argv[1]
	value = int(sys.argv[2])
	json_path = sys.argv[3]
		
	m_json_data = get_new_json(json_path,key,value)	
	rewrite_json_file(json_path,m_json_data)

    Running example:

    python  json_value_modify.py  a.b.c  999  /home/cabin/example.json

    That is, change the value corresponding to the key value of abc in example.json to 999.

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=324839226&siteId=291194637