Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Write to file and see content on screen

0 views
Skip to first unread message

lam...@verizon.net

unread,
Jun 9, 2008, 9:01:41 PM6/9/08
to
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,

CM

unread,
Jun 9, 2008, 9:23:15 PM6/9/08
to

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.

MRAB

unread,
Jun 10, 2008, 5:08:09 AM6/10/08
to

Something like this, perhaps?

class Storage(object):
def __init__(self, the_file):
self.the_file = the_file
def write(self, message):
import sys
sys.stdout.write(message)
self.the_file.write(message)

my_file = open("my_text.txt", "w")
store = Storage(my_file)
print >> store, "Hello world!"
my_file.close()

0 new messages