You can use the ** keyword argument unpacking operator to deliver the key-value pairs in a dictionary into a function's arguments. A simplified example from the official documentation:
>>>
>>> def parrot(voltage, state, action):
... print("This parrot wouldn't", ac...