A server launcher with log console in Python Tkinter

Posted on Fri 13 March 2015 in Python • Tagged with GUI, Multithreading, python, Tkinter, UDPLeave a comment

I'm working on an Tk application that should start and stop an UDP server, I need to show server logs in the Tk GUI with a "Pause & Resume" button.

I already have the UDP server implemented using the blocking SocketServer.BaseRequestHandler , so in order to wrap a GUI to ...

Continue reading