Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在寻找重新实现一些使用socket -server构造 [1] 的 Tcl 代码。
socket -server
对于包含事件循环处理/集成的小型工业级多用户网络服务器,Python 中的最佳选择是什么?
[1] http://www.tcl.tk/man/tcl8.4/TclCmd/socket.htm
听起来像 Python 的socketserver模块。
socketserver
还有更高级的框架,asyncore包含在标准库中,twisted是一个巨大的网络框架。
asyncore
twisted