Cameron Laird mentioned Tk's send working with Python; if you are writing your
app with Tkinter, here is some code to let you use tcl commands like
send python
for remote control. You could build a more sophisticated front-end for this,
and you'll probably also want to add stuff like sending
On 23 Feb 2005 02:37:48 -0800, DE <[EMAIL PROTECTED]> wrote:
> Hello,
>
> Some long time ago, I used to use Tcl/Tk. I had an tcl embedded into my
> app.
>
> The coolest thing was however, I was able to attach to the interpreter
> (built in to my app) via a tcl shell in which I could type in regul
In article <[EMAIL PROTECTED]>,
Robin Becker <[EMAIL PROTECTED]> wrote:
>DE wrote:
>> Hello,
>>
>> Some long time ago, I used to use Tcl/Tk. I had an tcl embedded into my
>> app.
>>
>> The coolest thing was however, I was able to attach to the interpreter
>> (built in to my app) via a tcl shell
> "fuzzyman" == Fuzzyman <[EMAIL PROTECTED]> writes:
fuzzyman> Do you mean making the interpreter available from within
fuzzyman> a Python app ? There are various ways of doing that -
fuzzyman> you can see the SPE editor which uses pycrust as one
fuzzyman> example. http://spe
Do you mean making the interpreter available from within a Python app ?
There are various ways of doing that - you can see the SPE editor which
uses pycrust as one example. http://spe.pycs.net
You could also embed IPython for a good interface to the interpreter.
http://ipython.scipy.net
Regards,
DE wrote:
Hello,
Some long time ago, I used to use Tcl/Tk. I had an tcl embedded into my
app.
The coolest thing was however, I was able to attach to the interpreter
(built in to my app) via a tcl shell in which I could type in regular
tcl code which would be interpreted by the interpreter of my
app
Hello,
Some long time ago, I used to use Tcl/Tk. I had an tcl embedded into my
app.
The coolest thing was however, I was able to attach to the interpreter
(built in to my app) via a tcl shell in which I could type in regular
tcl code which would be interpreted by the interpreter of my
application