Write to file and see content on screen

CM cmpython at gmail.com
Mon Jun 9 21:23:15 EDT 2008


On Jun 9, 9:01 pm, lama... at verizon.net wrote:
> Hello all,
>
> New user to python.   I can write to a file, however, I would like to
> do both...whatever I do on the screen, I'd like to write it to a file.
>
> any pointers on where I can find this info.
>
> thanks,

There is probably some smart way to do this that I don't know, but
in wxPython you could have your textbox and bind it to an EVT_TEXT
event, and then in the event handler for that write the contents of
the textbox to your file.  This way on any change in the textbox,
there would be a write to the file.  But I don't know if that is
practical or if the writes would keep up well.  You could also have
a counter and when the counter reaches x characters then do a write.
Or you could set a timer and do the write every x seconds.




More information about the Python-list mailing list