Write to file and see content on screen

L

lamarts

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,
 
C

CM

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.
 
M

MRAB

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,

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()
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,432
Messages
2,571,682
Members
48,796
Latest member
Greg L.

Latest Threads

Top