Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a Python function, fooPy() that returns some value. ( int / double or string)

I want to use this value and assign it in a shell script. For example following is the python function:

def fooPy():
    return "some string" 
    #return 10  .. alternatively, it can be an int

fooPy()

In the shell script I tried the following things but none of them work.

fooShell = python fooPy.py
#fooShell = $(python fooPy.py)
#fooShell = echo "$(python fooPy.py)"
share|improve this question

4 Answers

up vote 6 down vote accepted

You can print your value in Python, like this:

print fooPy()

and in your shell script:

fooShell=$(python fooPy.py)

Be sure not to leave spaces around the = in the shell script.

share|improve this answer
thanks, that worked! I also made a mistake by putting spaces around =. So fixed that as well. – cppb Jan 22 '10 at 7:40
+1 for mentioning "Be sure not to leave spaces around the = in the shell script" It annoys the hell out of rookies like me. – Matt Bannert Aug 17 '10 at 13:23

In your Python code, you need to print the result.

import sys
def fooPy():
    return 10 # or whatever

if __name__ == '__main__':
    sys.stdout.write("%s\n", fooPy())

Then in the shell, you can do:

fooShell=$(python fooPy.py) # note no space around the '='

Note that I added an if __name__ == '__main__' check in the Python code, to make sure that the printing is done only when your program is run from the command line, not when you import it from the Python interpreter.

I also used sys.stdout.write() instead of print, because

  • print has different behavior in Python 2 and Python 3,
  • in "real programs", one should use sys.stdout.write() instead of print anyway :-)
share|improve this answer
+ 1 for a detailed answer and notes about sys.stdout.write() It is useful . Thank you! – cppb Jan 22 '10 at 7:41

You should print the value returned by fooPy. The shell substitution reads from stdout. Replace the last line of your program with print fooPy() and then use the second shell pipeline you've mentioned. It should work.

share|improve this answer

If you want the value from the Python sys.exit statement, it will be in the shell special variable $?.

$ var=$(foo.py)
$ returnval=$?
$ echo $var
Some string
$ echo returnval
10
share|improve this answer
+1 for pointing the way to get the termination code... but let me fix one little detail. – fortran Jan 22 '10 at 7:50
Thanks for the fix (such are the hazards of working in multiple languages). – Dennis Williamson Jan 22 '10 at 10:36
hmm..this makes the "print return_val" call unnecessary (not tried yet) . Thanks , this is useful info. +1. – cppb Jan 23 '10 at 4:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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