54 lines
1.5 KiB
Python
54 lines
1.5 KiB
Python
|
try:
|
||
|
import ujson as json
|
||
|
except ModuleNotFoundError:
|
||
|
import json
|
||
|
|
||
|
|
||
|
|
||
|
def jsonLoad(filename):
|
||
|
"""Loads arg1 as json and returns its contents"""
|
||
|
with open(filename, "r", encoding='utf8') as file:
|
||
|
output = json.loads(file.read())
|
||
|
file.close()
|
||
|
return output
|
||
|
|
||
|
def jsonSave(contents, filename):
|
||
|
"""Dumps dict/list arg1 to file arg2"""
|
||
|
with open(filename, "w", encoding='utf8') as file:
|
||
|
file.write(json.dumps(contents, ensure_ascii=False, indent=4))
|
||
|
file.close()
|
||
|
return
|
||
|
|
||
|
|
||
|
def configSet(key: str, value, *args: str):
|
||
|
"""Set key to a value
|
||
|
Args:
|
||
|
* key (str): The last key of the keys path.
|
||
|
* value (str/int/float/list/dict/None): Some needed value.
|
||
|
* *args (str): Path to key like: dict[args][key].
|
||
|
"""
|
||
|
this_dict = jsonLoad("config.json")
|
||
|
string = "this_dict"
|
||
|
for arg in args:
|
||
|
string += f'["{arg}"]'
|
||
|
if type(value) in [str]:
|
||
|
string += f'["{key}"] = "{value}"'
|
||
|
else:
|
||
|
string += f'["{key}"] = {value}'
|
||
|
exec(string)
|
||
|
jsonSave(this_dict, "config.json")
|
||
|
return
|
||
|
|
||
|
def configGet(key: str, *args: str):
|
||
|
"""Get value of the config key
|
||
|
Args:
|
||
|
* key (str): The last key of the keys path.
|
||
|
* *args (str): Path to key like: dict[args][key].
|
||
|
Returns:
|
||
|
* any: Value of provided key
|
||
|
"""
|
||
|
this_dict = jsonLoad("config.json")
|
||
|
this_key = this_dict
|
||
|
for dict_key in args:
|
||
|
this_key = this_key[dict_key]
|
||
|
return this_key[key]
|