views:

129

answers:

1

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?

[1] http://www.tcl.tk/man/tcl8.4/TclCmd/socket.htm

+2  A: 

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.

THC4k
Just what I was looking for... Thanks!
Mark Harrison