What i need to do is to convert something like this
{\'key1\': [1, 2, 3], \'key2\': [4, 5, 6]}
into
[{\'key1\': 1, \'key2\'
list(map( dict, zip(*([(key, val) for val in data[key]] for key in data.keys()))))