ipc.rst 649 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10
.. _ipc:

*****************************************
Interprocess Communication and Networking
*****************************************

The modules described in this chapter provide mechanisms for different processes
to communicate.

Some modules only work for two processes that are on the same machine, e.g.
11
:mod:`signal` and :mod:`mmap`.  Other modules support networking protocols
12
that two or more processes can use to communicate across machines.
13 14 15 16 17 18 19

The list of modules described in this chapter is:


.. toctree::

   socket.rst
20
   ssl.rst
21 22 23
   select.rst
   selectors.rst
   asyncio.rst
24 25
   asyncore.rst
   asynchat.rst
26 27
   signal.rst
   mmap.rst