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
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
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
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
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.
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
python-mode in Emacs.
--
http://mail.python.org/mailman/listinfo/python-list
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