How-to articles, tricks, and solutions about ARGUMENT-UNPACKING
What does ** (double star/asterisk) and * (star/asterisk) do for parameters?
In Python, the double star (**) is used to denote an "unpacking" operator, which allows you to unpack a dictionary or other iterable data type into keyword arguments in a function call.