I have shell script. Which has :
./dtapi get_probability decision_tree simulated_diabetes_incidence_data_new.txt AGE 70 weight 34 height 5.5 sex 0 ds1 34
Now I am trying to execute this shell script withing python script and store the result into some variable. test.py contains -
import os, sys
result = os.system("sh cmd_dtapi.sh")
print "Result is : ", result
But it behaves like this:
python test.py
{"risk_of_disease":"2.122e-314"}Result is : 0
Result get printed directly, assignment takes 0 .
How can I store the result into some variable?
Update
After following answer -
import subprocess
import json
result_process_output = subprocess.check_output("sh cmd_dtapi.sh")
result_json = json.loads(result_process_output)
result = result_json["risk_of_disease"]
print "Result is : ", result
Gives
Traceback (most recent call last):
File "test.py", line 3, in <module>
result_process_output = subprocess.check_output("sh cmd_dtapi.sh")
File "/usr/lib/python2.7/subprocess.py", line 566, in check_output
process = Popen(stdout=PIPE, *popenargs, **kwargs)
File "/usr/lib/python2.7/subprocess.py", line 710, in __init__
errread, errwrite)
File "/usr/lib/python2.7/subprocess.py", line 1327, in _execute_child
raise child_exception
OSError: [Errno 2] No such file or directory