faqts : Computers : Programming : Languages : Python : Modules

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

23 of 29 people (79%) answered Yes
Recently 9 of 10 people (90%) answered Yes

Entry

Is there an IPC module in Python?

Jul 23rd, 2002 07:48
Michael Chermside, Marc Gehling,


There are several ways of performing IPC (Inter-Process Communication),
and most are accessible through one module or another in Python. These
are a few which might be useful:
socket - Low-level networking interface
signal - Set handlers for asynchronous events
mmap   - Memory-mapped file support
popen2 - Subprocesses with accessible I/O streams
thread - Multiple threads of control
threading - Higher-level threading interface
pipes  - Interface to shell pipelines
select - Waiting for I/O completion
commands - Utilities for running commands
For more details, go to http://www.python.org/doc/current/lib/lib.html