Close

Python Inter-process Communication

Inter-process communication Interprocess communication in Python with shared memory The python ecosystem has rich support for interprocess communication (IPC). The multiprocessing API allows multiple python processes to coordinate by passing pickled objects back and forth. Python has full support for signal handling, socket IO, and the select API (to name just a few). In this…