1
Python on Heroku
You can run python on heroku with a system call from a ruby app. Just run something like:
@output = `echo \"#{variable}\" | python script.py`.
This will let you read standard out from a python script.
@output = `echo \"#{variable}\" | python script.py`.
This will let you read standard out from a python script.