I am trying to \'destructure\' a dictionary and associate values with variables names after its keys. Something like
params = {\'a\':1,\'b\':2} a,b = params.
Maybe you really want to do something like this?
def some_func(a, b): print a,b params = {'a':1,'b':2} some_func(**params) # equiv to some_func(a=1, b=2)