S
kwargs
всякий шлак, который правильнее было бы класть в extra_data
.-> % python3.7
Python 3.7.5 (default, Nov 7 2019, 10:50:52)
[GCC 8.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> def f(**kwargs):
... print(kwargs)
...
>>> f(**{"a-b": 1})
{'a-b': 1}
>>>