Sorry
Sorry

Reputation: 41

How to run python function from shell script

This is my shell script, and I want to run the method foo(param):

#!/bin/sh    
python /Users/username/Desktop/forTrump/test.py

How would I run a function inside test.py using the shell script above?

Upvotes: 0

Views: 3125

Answers (1)

Henin RK
Henin RK

Reputation: 298

python -c 'import test; print test.foo(param)'

Upvotes: 1

Related Questions