Simple Python Non-blocking Socket Server
I have been looking for a way to make a simple non-blocking socket server. I found a few examples on the net, that use select
but they were complex and didn't show how to handle messages.
How did I get to reaching this question?
The simplest way to make...