blob: 6b1756331ec0156822ece85f81c74f3c7c608c0a [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001.. _ipc:
2
3*****************************************
4Interprocess Communication and Networking
5*****************************************
6
7The modules described in this chapter provide mechanisms for different processes
8to communicate.
9
10Some modules only work for two processes that are on the same machine, e.g.
Nick Coghlanbac9a532012-08-20 18:05:46 +100011:mod:`signal` and :mod:`mmap`. Other modules support networking protocols
Eli Bendersky8b402622014-02-09 05:54:13 -080012that two or more processes can use to communicate across machines.
Georg Brandl116aa622007-08-15 14:28:22 +000013
14The list of modules described in this chapter is:
15
16
17.. toctree::
18
Georg Brandl116aa622007-08-15 14:28:22 +000019 socket.rst
Thomas Woutersed03b412007-08-28 21:37:11 +000020 ssl.rst
Guido van Rossum5467da82013-11-22 11:56:46 -080021 select.rst
22 selectors.rst
23 asyncio.rst
Georg Brandl116aa622007-08-15 14:28:22 +000024 asyncore.rst
25 asynchat.rst
Nick Coghlanbac9a532012-08-20 18:05:46 +100026 signal.rst
27 mmap.rst