I made my own class for some data processing.
Here is my concept of class module condition
I want to take all user input variables including
**kwargs
from__init__
only__init__
doing pre processing which need**kwargs
for one of the input variablesalso need additional data processing function inside of class which need
**kwargs
also need
__call__
method which need**kwargs
to satisfy all my conditions, in my view I need to make **kwargs
as something like self.**kwargs
. So, how can I make keyword arguments to self variables?