views:

39

answers:

1

I am developing a Python based GUI.
I need to run a ruby file and get its output. I did it successfully using subprocess module. But I need to run the file in the background and I need to get its output as well.

Can you please let me know how to achieve this?

A: 

google for python popen

rogerdpack