views:

31

answers:

1

Hey I want to create a bash-shell in wxPython, the only thing it should be able to do is run a python file and be able to offer user_input on the fly. (I know there is a Python Shell, but that is something different)

Can someone help me with this? thanks in advance

A: 

Maybe pyCrust plus the Python debugger?

Mike Driscoll
I don't see how I can use pyCrust in this case :s it does not offer something like RunFile() or Open(),...
Kruptein
You'd probably have to use it in combination with wx.Process or the subprocess module, which is what I expect most of the other editors use.
Mike Driscoll