标签: python socketserver event-loop
我希望重新实现一些使用socket -server构造[1]的Tcl代码。
socket -server
对于包含事件循环处理/集成的小型,工业级多用户网络服务器,Python中最好的选择是什么?
[1] http://www.tcl.tk/man/tcl8.4/TclCmd/socket.htm
答案 0 :(得分:2)
听起来像Python的socketserver模块。
socketserver
还有更高级的框架,stdlib中包含asyncore,而twisted是一个庞大的网络框架。
asyncore
twisted