Re: 'REPL' style IDE

2007-08-22 Thread Dick Moores
At 10:50 AM 8/20/2007, beginner wrote: >Hi Everyone, > >I am using the Wing IDE. It works great when developing applications, >but the workflow is like Visual Studio -- after you execute it or >debug it, the python script ends. > >What I want is an interactive interpreting environment. I want the I

Re: 'REPL' style IDE

2007-08-21 Thread pyscottishguy
How about embedding ipython in your script with: from IPython.Shell import IPShellEmbed ipshell = IPShellEmbed() ** your set up code ** ipshell() # this call anywhere in your program will start IPython see: http://ipython.scipy.org/doc/manual/node9.html#sec:embed Here are some ipython tips: h

Re: 'REPL' style IDE

2007-08-20 Thread beginner
On Aug 20, 2:39 pm, Jeff <[EMAIL PROTECTED]> wrote: > python-mode in Emacs. Yeah, but I don't know anything about Emacs and as far as I know it is pretty complicated. -- http://mail.python.org/mailman/listinfo/python-list

Re: 'REPL' style IDE

2007-08-20 Thread beginner
On Aug 20, 2:51 pm, JoeSox <[EMAIL PROTECTED]> wrote: > On 8/20/07, beginner <[EMAIL PROTECTED]> wrote: > > > Hi Everyone, > > > I am using the Wing IDE. It works great when developing applications, > > but the workflow is like Visual Studio -- after you execute it or > > debug it, the python scrip

Re: 'REPL' style IDE

2007-08-20 Thread JoeSox
On 8/20/07, JoeSox <[EMAIL PROTECTED]> wrote: > On 8/20/07, beginner <[EMAIL PROTECTED]> wrote: > > Hi Everyone, > > > > I am using the Wing IDE. It works great when developing applications, > > but the workflow is like Visual Studio -- after you execute it or > > debug it, the python script ends.

Re: 'REPL' style IDE

2007-08-20 Thread JoeSox
On 8/20/07, beginner <[EMAIL PROTECTED]> wrote: > Hi Everyone, > > I am using the Wing IDE. It works great when developing applications, > but the workflow is like Visual Studio -- after you execute it or > debug it, the python script ends. > > What I want is an interactive interpreting environment

Re: 'REPL' style IDE

2007-08-20 Thread Jeff
python-mode in Emacs. -- http://mail.python.org/mailman/listinfo/python-list

Re: 'REPL' style IDE

2007-08-20 Thread beginner
On Aug 20, 12:50 pm, beginner <[EMAIL PROTECTED]> wrote: > Hi Everyone, > > I am using the Wing IDE. It works great when developing applications, > but the workflow is like Visual Studio -- after you execute it or > debug it, the python script ends. > > What I want is an interactive interpreting en