Difficult-Rocket/libs/loads.py
2021-01-09 22:05:43 +08:00

19 lines
372 B
Python

"""
writen by shenjackyuanjie
mail: 3695888@qq.com
"""
import json
def config(file_name, stack=None):
rd = {} # rd -> return
try:
with open(file_name, "r") as jf: # jf -> json file
rd = json.load(jf)
except FileNotFoundError:
raise FileNotFoundError("no config file")
if stack != None:
rd = rd[stack]
return rd