Hi, I would suggest not to use multi-threading unless you're absolutely sure you can't do it without. GObject has ways to deal with incoming events (network, disc, user input). See http://www.pygtk.org/docs/pygobject/glib-functions.html#function-glib--io-add-watch.
Note that the most high performant web servers nowadays are single threaded only ;). Regards, Arjan On 8 Sep 2011, at 18:54, Giuseppe Penone wrote: > take a look at this http://faq.pygtk.org/index.py?req=show&file=faq20.006.htp > > Cheers, > Giuseppe. > > > On Wed, Sep 7, 2011 at 23:38, Ravindra Nagireddy <[email protected]> wrote: > hello, > > > I am developing a GUI using PYGTK. I am really puzzled on how to make my GUI > update dynamically. I am working on a networking project. I am representing > each node in the network with an image. My GUI does not update when the > number of nodes change during run time. Please help me out > > > -- > Best Regards, > > Ravindra Nagireddy > > _______________________________________________ > pygtk mailing list [email protected] > http://www.daa.com.au/mailman/listinfo/pygtk > Read the PyGTK FAQ: http://faq.pygtk.org/ > > _______________________________________________ > pygtk mailing list [email protected] > http://www.daa.com.au/mailman/listinfo/pygtk > Read the PyGTK FAQ: http://faq.pygtk.org/ _______________________________________________ pygtk mailing list [email protected] http://www.daa.com.au/mailman/listinfo/pygtk Read the PyGTK FAQ: http://faq.pygtk.org/
