Networking and Interprocess Communication¶
The modules described in this chapter provide mechanisms for networking and inter-processes communication.
Some modules only work for two processes that are on the same machine, e.g.
signal
and mmap
. Other modules support networking protocols
that two or more processes can use to communicate across machines.
本章中描述的模块列表是:
asyncio
--- 异步 I/Osocket
--- Low-level networking interfacessl
--- TLS/SSL wrapper for socket objectsselect
--- Waiting for I/O completionselectors
--- 高级 I/O 复用库asyncore
--- Asynchronous socket handlerasynchat
--- Asynchronous socket command/response handlersignal
--- Set handlers for asynchronous eventsmmap
--- Memory-mapped file support