Hi,I have a method named main it takes **kwargs as a parameter. def main(**kwargs):
parameterOne = kwargs["param-one"]
parameterTwo = kwargs["param-two"]
parameterThree = kwargs["param-optional-one"] if "param-optional-one" in kwargs else...
Hi,Thanks for you answer.Yes, what you say is correct, we must use argparse to get the keyword arguments.Though, doing argparse outside of the entry point method didn't work for me.I had to do it inside the method.I have no idea why? I will try it ag...