I am wanting to load another program into my python GUI. The other program takes in a textfile and prints out a result I want to print the result out in my other program I was just wondering how i would go about this using the subprocess module
is this correct thing to do?
def test(self,event):
t=subprocess.check_output("filename test.py", shell=True)
wx.StaticText(self,-1,t, (10,35))
Thanks
check_output()can be used to get the output of a subprocess; you might not need a subprocess in this case. You could justimport testand call appropriate functions in it. – J.F. Sebastian Nov 22 '12 at 17:43