I'm looking to reimplement some Tcl code that uses the socket -server
construct [1].
What's the best option in Python for a small, industrial strength multi-user network-based server that includes event loop processing/integration?
I'm looking to reimplement some Tcl code that uses the socket -server
construct [1].
What's the best option in Python for a small, industrial strength multi-user network-based server that includes event loop processing/integration?
Sounds like Python's socketserver
module.
There are more advanced frameworks too, asyncore
is included in the stdlib and twisted
is a huge networking framework.