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

tshepang
  • 12,111
  • 21
  • 91
  • 136
Mark Harrison
  • 297,451
  • 125
  • 333
  • 465

1 Answers1

2

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.

Jochen Ritzel
  • 104,512
  • 31
  • 200
  • 194