I was tring to call the source command in unix from a python script. I was trying to get it done with subprocess.Popen passing the os environment to it.

Below is my function for doing the task of executing a command:

def run_command(command, tst_env):
    print tst_env
    try:
       p = subprocess.Popen(command, env=tst_env, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True)
       stout, er = p.communicate()
       print stout, er
       ret = p.wait()
    except Exception, e:
       print "Exception: ", e
    else :
        if ret:
          print command, "failed", ret
          return
        else:
          print command, "succeeded", ret
    return p

The tst_env is an object of os.environ type.

run_command(source script.sh, os.environ) says it is successful.

But I am not able to access the functions in the script.

The case is like this:

script.sh follows:

function task_test() {
   echo "Test function called"
}

source script.sh

task_test will call the function in the shell script.

But I am not able to call the functions in the shell script from python.

Hope I am clear.

link|improve this question
3  
can you elaborate, what you can't access.. and from where – avasal Dec 9 '11 at 9:17
2  
Please learn to use MarkDown for the next question! :) – mac Dec 9 '11 at 11:26
What do stout and er say? And what should they say if the shell script ran successfully? You don't need a p.wait() - p.communicate() does not return until the subprocess exits. – Dave Dec 9 '11 at 11:51
p.wait() is for making the script wait to get an indication of the success while running the script. And p.communicate is used to get the stdout messages. What I want is to use the functions in the shell script we write. If from within the shell we could use the source command. But I am not able to get it done. – George Thomas Dec 10 '11 at 13:02
feedback

1 Answer

up vote 1 down vote accepted

subprocess is there for executing things. It doesn't give you a bridge between shell functions and Python. You can't "load" a shell file and then treat it as a Python object you can call. You can just execute the contents of the script.

link|improve this answer
1  
Is there a way to get this done? – George Thomas Dec 12 '11 at 5:58
1  
@GeorgeThomas: not practically, but you can write something which will execute a given function, by executing this sort of source file.sh; [function] thing. – Chris Morgan Dec 12 '11 at 8:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.