vote up 6 vote down star
4

I am making a sort of a science lab in Python, in which the user can create, modify and analyze all sorts of objects. I would like to put a Python shell inside the program, so the user could manipulate the objects through the shell. (Note: He could also manipulate the objects through the usual GUI.)

A mockup that illustrates this:

How can I make this sort of thing?

I considered using eval, but I understood that eval can't handle import, for example.

flag

66% accept rate

4 Answers

vote up 2 vote down check

Depending on your GUI framework, it may already has been done:

  • For wxpython, look up "PyCrust" - it's very easy to embed into your app
  • For PyQt, pyqtshell

Here's what I did to embed PyCrust into the application:

import wx.py.crust
...
...
# then call

crustFrame = wx.py.crust.CrustFrame(parent = self)
crustFrame.Show()

The self here refers to my main frame (derived from wx.Frame). This creates a PyCrust window that runs in your application and allows you to inspect everything stored in your main frame (because of the self).

link|flag
I looked up PyCrust, but I don't understand- Does it create another instance of Python? I need something that will control the same instance of Python that the main program runs in. – cool-RR May 2 at 13:08
Added code sample. It runs in the same instance, and can access (and modify) the the object that is given it as a parent. – eliben May 2 at 14:21
Thanks, worked great! – cool-RR May 2 at 18:55
vote up 2 vote down

The Python eval() function only handles expressions. You may want to consider the exec statement instead, which can run any arbitrary Python code.

link|flag
vote up 9 vote down

You are looking for code - Interpreter base classes, particularly code.interact().

Some examples from effbot.

link|flag
Those examples are from Python 1.5... – cool-RR May 2 at 13:49
Well, the link to docs is 2.6 and all you need to do is call code.interact(). For another example, here's a link to the Django shell command that is both current and also works with IronPython: code.djangoproject.com/browser/django/… – Van Gale May 3 at 0:41
..that's just for reference for other people needing to embed interpreter. If you're using wxPython then PyCrust is definitely a better solution. – Van Gale May 3 at 0:42
vote up 1 vote down

FWIW, I believe Enthought has written something like this for use with their Python-based (and NumPy-based) visualization suite. I saw a demo two years ago where they indeed let you manipulate objects directly via the GUI or via the Python interpreter.

Also, to add to the first answer, you might have to subclass code.InteractiveConsole to override self.read() and self.write(), so they interact with the GUI. And you'll also have to redirect sys.stdout and sys.stderr to some writable class that writes to the same console.

link|flag
Before I begin digesting your answer- Do you happen, by any chance, to be Guido? – cool-RR May 1 at 23:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.