python os.bash to execute bash script code example
Example: How to run bash script in python
import subprocess
print "start"
subprocess.call("sleep.sh")
print "end"
import subprocess
print "start"
subprocess.call("sleep.sh")
print "end"