I read already this What is the best way to call a Python script from another Python script?
In my case I don't want to call another python script in a python script, but I want to call for example the ssylze.py with the specific options
$ python sslyze.py --regular www.target1.com
like consider in https://code.google.com/p/sslyze/wiki/QuickStart
So I have script test1.py and in that script I would like to use
sslyze.py --regular www.target1.com
how I do that?