A syntax for keyword arguments in Python and Ruby, e.g. **kwargs
In method definitions, **kwargs
is used to take arbitrary keyword arguments. In method calls, it attempts to convert the object (usually a dictionary / hash) to keyword arguments.
Further references: