In order to run python from cmd file I need only to run:
python file_name.py
In order to add a timeout, as suggested here we should only do something like that:
timeout time_in_secs python file_name.py
But how to run a python with args, something like that?
timeout time_in_secs python file_name.py --cli_arg="cli_arg"