[Tkinter-discuss] Tkinter-discuss Digest, Vol 15, Issue 5

Vania Smrkovski vania at pandorasdream.com
Tue May 10 14:10:48 CEST 2005


Thanks, Harlin,
  As it happens, I stumbled upon that solution somewhere else, too, and it worked.  The Tkinter sites are more than honest in not having the level of documentation that would avoid my repeat question.  But having been involved in open source for some time, I have to say I am very thankful that no one has been unduly rude to me for asking a FAQ.
  I appreciate your answer, too.  
  Now, I am working on integrating my wireless palm handheld with Python services.  I am surprised that there still are not palm interpreters for PalmOS (beyond Pippy, I mean), but I can stand to learn a little C again after all these years of scripting....

Thanks again,
_____________________
Vania Smrkovski
www.pandorasdream.com


----- Original Message -----
I think this sort of thing is asked more in this list than anywhere else :-)
Try using Tk().after(milliseconds, function/method). Sure it can eat up some memory but it works pretty well.
 
Harlin Seritt

tkinter-discuss-request at python.org wrote:
Send Tkinter-discuss mailing list submissions to
tkinter-discuss at python.org

To subscribe or unsubscribe via the World Wide Web, visit
http://mail.python.org/mailman/listinfo/tkinter-discuss
or, via email, send a message with subject or body \'help\' to
tkinter-discuss-request at python.org

You can reach the person managing the list at
tkinter-discuss-owner at python.org

When replying, please edit your Subject line so it is more specific
than \"Re: Contents of Tkinter-discuss digest...\"


Today\'s Topics:

1. Re: Tkinter and threading (Russell E. Owen)


----------------------------------------------------------------------

Message: 1
Date: Mon, 09 May 2005 12:04:34 -0700
From: \"Russell E. Owen\" 
Subject: Re: [Tkinter-discuss] Tkinter and threading
To: tkinter-discuss at python.org
Message-ID: 

In article ,
Vania Smrkovski wrote:

> Hello,
> New to this group, and I have not found much in the way of documentation 
> for advanced uses of Tkinter, yet. So far, Tk3k is the most advanced 
> resource I have found yet.
> I am trying to implement threading in my Tkinter app. I have managed to 
> get a button to fire an FTP download into one of my text areas, but to get 
> rid of the delay on the GUI while the FTP process was being handled, I 
> created a thread in the button\'s command handler....

You cannot safely make Tkinter from any thread other than the one that 
started the tkinter mainloop (i.e. your main thread unless you are doing 
something really weird).

As far as network communication goes, you have several options...
- Use the free \"twisted framework\". It integrates with Tkinter and other 
GUI toolkits, handles most of the standard protocols and is reported to 
be very good.

- For ftp, do the transfer in the background and poll the state. This is 
especially appropriate if you have multiple transfers since one polling 
loop can poll all of them. For an example see RO.Comm.FTPGet and the 
associated widget RO.Wdg.FTPLogWdg in the RO package 
.

- For TCP/IP use a tcl socket and use file events to handle incoming 
data and errors. This has the advantage of being asynchronous (and is 
completely cross platform unlike the a similar technique at the Tkinter 
level). For an example see RO.Comm.TCPConnection and the underlying 
RO.Comm.TkSocket.

-- Russell

P.S. there were rumors a few years ago that you could safely generate 
Tkinter events from a background thread and have the main thread handle 
them. However, I am pretty sure (based on my own tests) that it\'s not 
actually safe to do that. My suggestion is to NEVER deal with Tkinter or 
Tk from a background thread.



------------------------------

_______________________________________________
Tkinter-discuss mailing list
Tkinter-discuss at python.org
http://mail.python.org/mailman/listinfo/tkinter-discuss


End of Tkinter-discuss Digest, Vol 15, Issue 5
**********************************************

		
---------------------------------
Yahoo! Mail Mobile
 Take Yahoo! Mail with you! Check email on your mobile phone.



More information about the Tkinter-discuss mailing list