Reputation: 867
Is it possible to write a server that allows multiple connections without using threads or a new process?
Now I am not talking about a bunch of socket.accepts(), but is there a different way?
Upvotes: 0
Views: 831
Reputation: 87084
Python provides the module asyncore. Here is a nice example of an echo server.
Upvotes: 2