[Tutor] imbedding python into another program?

2005-06-01 Thread Jeff Peery
hello, is it possible to add something like the python IDLE into another program, say if I wanted to simply run scripts from within a wxPython program? Could someone point me to the correct reference? thanks.   Jeff___ Tutor maillist - Tutor@python.or

Re: [Tutor] imbedding python into another program?

2005-06-01 Thread Danny Yoo
On Wed, 1 Jun 2005, Jeff Peery wrote: > hello, is it possible to add something like the python IDLE into another > program Hi Jeff, Getting IDLE to work within wxPython is technically possible, but probably a little tricky, since it'll involve getting the GUI event loops to cooperate. I belie

Re: [Tutor] imbedding python into another program?

2005-06-01 Thread André Roberge
Jeff Peery wrote: > hello, is it possible to add something like the python IDLE into > another program, say if I wanted to simply run scripts from within a > wxPython program? Could someone point me to the correct reference? > thanks. > Hi Jeff, you may want to have a look at PyCr

Re: [Tutor] imbedding python into another program?

2005-06-01 Thread Jeff Peery
ok, thanks! that helps.  I have an application that reads a data file, crunches some numbers, and spits out some graphs.  In addition to this I would also like users to be able to write small python scripts to operate on the data that is available within the program. I suppose this could be accompl

Re: [Tutor] imbedding python into another program?

2005-06-01 Thread Danny Yoo
On Wed, 1 Jun 2005, Jeff Peery wrote: > ok, thanks! that helps. I have an application that reads a data file, > crunches some numbers, and spits out some graphs. In addition to this I > would also like users to be able to write small python scripts to > operate on the data that is available wi

Re: [Tutor] imbedding python into another program?

2005-08-03 Thread Jeff Peery
Andre, thanks for the help with this. I put it to work yesterday and it works perfectly.   was wondering if it is possible to import modules without a users having to type 'import whatever'. for example in my application I would like the user to just start operating on arrays that exist in my progr

Re: [Tutor] imbedding python into another program?

2005-08-04 Thread Andre Roberge
On 8/3/05, Jeff Peery <[EMAIL PROTECTED]> wrote: > Andre, thanks for the help with this. I put it to work yesterday and it > works perfectly. > > was wondering if it is possible to import modules without a users having to > type 'import whatever'. for example in my application I would like the