En python, vous pouvez facilement analyser un fichier JSON avec le module json standard, mais c'est un peu dict, alors rendons-le accessible par points.
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import json
class Json(object):
def __init__(self, **kwargs):
[setattr(self,k,v) for k,v in kwargs.items()]
def hook(dct):
return Json(**dct)
def load(filename):
with open(filename) as f:
obj = json.load(f, object_hook=hook)
return obj
if __name__ == '__main__':
config = load('config.json')
print(config.conf_1) # conf_1
print(config.conf_2.conf_21[0]) # conf_221
config.json
{
"conf_1" : "conf_1",
"conf_2" : {
"conf_21" : "conf_21",
"conf_22" : [ "conf_221", "conf_222" ]
}
}
à la méthode
json.load. --Dans
hook spécifié dans ʻobject_hook
, le mot-clé est développé et distribué au constructeur de la classe Json
préparée.
--Dans la classe Json
, chaque argument reçu par le mot-clé est ajouté en tant qu'attribut.Recommended Posts