35

我最近开始使用 Python,我正在尝试将我的 JSON 字符串之一与现有的 JSON 字符串连接起来。我也在使用 Zookeeper,所以当我使用 Python kazoo 库时,我从 zookeeper 节点获取现有的 json 字符串。

# gets the data from zookeeper
data, stat = zk.get(some_znode_path)
jsonStringA = data.decode("utf-8")

如果我打印jsonStringA它会给我这样的 -

{"error_1395946244342":"valueA","error_1395952003":"valueB"}

但如果我这样做print json.loads(jsonString),它会像这样打印出来 -

{u'error_1395946244342': u'valueA', u'error_1395952003': u'valueB'}

这里jsonStringA将有我现有的 JSON 字符串。现在我有另一个键值对需要添加到现有的jsonStringA-

下面是我的 Python 代码 -

# gets the data from zookeeper
data, stat = zk.get(some_znode_path)
jsonStringA = data.decode("utf-8")

timestamp_in_ms = "error_"+str(int(round(time.time() * 1000)))
node = "/pp/tf/test/v1"
a,b,c,d = node.split("/")[1:]
host_info = "h1"
local_dc = "dc3"
step = "step2"

从zookeeper中提取后,我的现有jsonStringA将是这样的-

{"error_1395946244342":"valueA","error_1395952003":"valueB"}

现在我需要将此键值对附加到jsonStringA-

"timestamp_in_ms":"Error Occured on machine "+host_info+" in datacenter "+ local_dc +" on the "+ step +" of process "+ c +"

所以简而言之,我需要合并以下键值对 -

"error_1395952167":"Error Occured on machine h1 in datacenter dc3 on the step2 of process test"

所以最终的 JSON 字符串看起来像这样 -

{"error_1395946244342":"valueA","error_1395952003":"valueB","error_1395952167":"Error Occured on machine h1 in datacenter dc3 on the step2 of process test"}

这可能吗?

4

6 回答 6

34

假设 a 和 b 是您要合并的字典:

c = {key: value for (key, value) in (a.items() + b.items())}

要将字符串转换为 python 字典,请使用以下命令:

import json
my_dict = json.loads(json_str)

更新:使用字符串的完整代码:

# test cases for jsonStringA and jsonStringB according to your data input
jsonStringA = '{"error_1395946244342":"valueA","error_1395952003":"valueB"}'
jsonStringB = '{"error_%d":"Error Occured on machine %s in datacenter %s on the %s of process %s"}' % (timestamp_number, host_info, local_dc, step, c)

# now we have two json STRINGS
import json
dictA = json.loads(jsonStringA)
dictB = json.loads(jsonStringB)

merged_dict = {key: value for (key, value) in (dictA.items() + dictB.items())}

# string dump of the merged dict
jsonString_merged = json.dumps(merged_dict)

但是我不得不说,总的来说,您尝试做的并不是最佳实践。请阅读一些关于 python 字典的内容。


替代解决方案:

jsonStringA = get_my_value_as_string_from_somewhere()
errors_dict = json.loads(jsonStringA)

new_error_str = "Error Ocurred in datacenter %s blah for step %s blah" % (datacenter, step)
new_error_key = "error_%d" % (timestamp_number)

errors_dict[new_error_key] = new_error_str

# and if I want to export it somewhere I use the following
write_my_dict_to_a_file_as_string(json.dumps(errors_dict))

实际上,如果您只使用一个数组来保存所有错误,您就可以避免所有这些。

于 2014-03-27T20:30:36.720 回答
27

从 Python 3.5 开始,您可以将两个 dicts 合并为:

merged = {**dictA, **dictB}

https://www.python.org/dev/peps/pep-0448/

所以:

jsonMerged = {**json.loads(jsonStringA), **json.loads(jsonStringB)}
asString = json.dumps(jsonMerged)

等等

于 2018-10-30T13:33:19.473 回答
10

您可以将两个 json 字符串加载到 Python 字典中,然后合并。这仅在每个 json 字符串中有唯一键时才有效。

import json

a = json.loads(jsonStringA)
b = json.loads(jsonStringB)
c = dict(a.items() + b.items())
# or c =  dict(a, **b)
于 2014-03-27T20:21:04.127 回答
4

合并 json 对象相当简单,但在处理键冲突时有一些边缘情况。最大的问题与一个对象具有简单类型的值而另一个对象具有复杂类型(数组或对象)有关。您必须决定如何实现它。当我们为传递给 chef-solo 的 json 实现这一点时,我们的选择是合并对象并在所有其他情况下使用第一个源对象的值。

这是我们的解决方案:

from collections import Mapping
import json


original = json.loads(jsonStringA)
addition = json.loads(jsonStringB)

for key, value in addition.iteritems():
    if key in original:
        original_value = original[key]
        if isinstance(value, Mapping) and isinstance(original_value, Mapping):
            merge_dicts(original_value, value)
        elif not (isinstance(value, Mapping) or 
                  isinstance(original_value, Mapping)):
            original[key] = value
        else:
            raise ValueError('Attempting to merge {} with value {}'.format(
                key, original_value))
    else:
        original[key] = value

您可以在第一个案例之后添加另一个案例以检查列表,如果您也想合并这些列表,或者遇到特殊键的特定案例。

于 2014-03-27T20:58:01.990 回答
2

要将键值对附加到 json 字符串,可以使用dict.update : dictA.update(dictB)

对于您的情况,这将如下所示:

dictA = json.loads(jsonStringA)
dictB = json.loads('{"error_1395952167":"Error Occured on machine h1 in datacenter dc3 on the step2 of process test"}')

dictA.update(dictB)
jsonStringA = json.dumps(dictA)

请注意,键冲突将导致dictB覆盖dictA.

于 2020-01-30T01:31:46.160 回答
-2

你说的合并是什么意思?JSON 对象是键值数据结构。在这种情况下,键和值是什么?我认为您需要创建新目录并用旧数据填充它:

d = {}
d["new_key"] = jsonStringA[<key_that_you_did_not_mention_here>] + \ 
               jsonStringB["timestamp_in_ms"]

合并方法显然取决于您。

于 2014-03-27T20:19:40.460 回答