blob: b88a174eb97f15c0067664902b6aca8cb0185f8b [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001.. _ipc:
2
3*****************************************
Yury Selivanov805e27e2018-09-14 16:57:11 -07004Networking and Interprocess Communication
Georg Brandl116aa622007-08-15 14:28:22 +00005*****************************************
6
Yury Selivanov805e27e2018-09-14 16:57:11 -07007The modules described in this chapter provide mechanisms for
8networking and inter-processes communication.
Georg Brandl116aa622007-08-15 14:28:22 +00009
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::
Yury Selivanov805e27e2018-09-14 16:57:11 -070018 :maxdepth: 1
Georg Brandl116aa622007-08-15 14:28:22 +000019
Yury Selivanov7c7605f2018-09-11 09:54:40 -070020 asyncio.rst
Georg Brandl116aa622007-08-15 14:28:22 +000021 socket.rst
Thomas Woutersed03b412007-08-28 21:37:11 +000022 ssl.rst
Guido van Rossum5467da82013-11-22 11:56:46 -080023 select.rst
24 selectors.rst
Georg Brandl116aa622007-08-15 14:28:22 +000025 asyncore.rst
26 asynchat.rst
Nick Coghlanbac9a532012-08-20 18:05:46 +100027 signal.rst
28 mmap.rst