Just use func(**some_dict) to call it.
This is documented on section 4.7.4 of python tutorial.
Note that the same dict is not passed into the function. A new copy is created, so some_dict is not kwargs.
Just use func(**some_dict) to call it.
This is documented on section 4.7.4 of python tutorial.
Note that the same dict is not passed into the function. A new copy is created, so some_dict is not kwargs.