From an external file I generate the following dictionary:
mydict = { 'foo' : 123, 'bar' : 456 }
Given a function that takes a **kwargs
argument, how can generate the keyword-args from that dictionary?
def foo(**kwargs):
pass
foo(**{ 'foo' : 123, 'bar' : 456 })