Is there an easy way to use glom to get an unknown key from a dictionary?
the ??? represents random data that I am trying to capture from an API
book = {"???":[{ "globalIdenity":208565940},{"globalIdenity":228049454}]}
spec =
output_data = glom(book, spec)
print(output_data)
Use an
iterator
for values then use thenext
call to get the value