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