Lines Matching refs:json
49 import simplejson as json
130 # will prevent it from being accidentally serialized to json.
141 json dictionary containing planned image changes
2790 # comparison we load the serialized on-disk json data
3312 json version of the plan on stdout, and we'll verify it by
3313 running it through the json parser.
3361 p_dict = json.loads(stdout)
3605 json.dump(data, fobj, encoding="utf-8",
3632 data = json.load(fobj, encoding="utf-8",
3644 class PkgEncoder(json.JSONEncoder):
3645 """Utility class used when json encoding linked image metadata."""
3652 attempting to save 'obj' json format."""
3664 return json.JSONEncoder.default(self, obj)
3668 """Utility class used when json decoding linked image metadata."""