Glom: spec that creates an array from a string

296 Views Asked by At

In Python, given a dict in input as follows:

input = {
    'foo': 'bar'
}

which glom spec should I use to transform it into an array with a single item?

spec = ?
glom(input, spec)
# ['bar']

I can't find any reference for such a transformation in glom documentation

Thanks

1

There are 1 best solutions below

0
On BEST ANSWER

Based on their documentation, you can utilize lambda as a part of the spec argument:

import glom
input = {'foo': 'bar'}
foo = glom.glom(input, ('foo', lambda t: [t]))
print(foo)
>>> ['bar']