Is there a way to merge a list of dicts into a single dict using glom library?

440 Views Asked by At

I'm using glom project.

Is there a way to convert [{"id": 1, "name": "foo"}, {"id": 2, "name": "bar"}] to {1: "foo", 2: "bar"}?

1

There are 1 best solutions below

0
On BEST ANSWER

New glom version (19.2.0) allows to use Merge to merge two dicts.

from glom import glom, T, Merge

target = [{"id": 1, "name": "foo"}, {"id": 2, "name": "bar"}]
spec = Merge([{T["id"]: T["name"]}])

glom(target, spec)
# {1: 'foo', 2: 'bar'}

Docs: https://glom.readthedocs.io/en/latest/api.html?highlight=merge#glom.Merge