I am trying to run a python script from another as follows, some of the arguments take quotes (")
,how do I run this command with quotes?
cmd = r"python ./clone.py -u username -rl %s -ra adar.py -d 13346612 -at "Cloning for automation" -m "Pace" -r "Cloning for automation" "%radar
proc = Popen(cmd.split(' '), stdout=PIPE, stderr=PIPE)
UPDATE#1:I tried the following suggestions but none of them worked
(i)escape the quotes
(ii)Use multi line quotes
(iii)Use single quotes as delimiter
UPDATE#2:
I tried to run with shell=TRUE
but the python script hungs