Skip to main content

A library for launching, maintaining, and terminating a family of long-lived python child processes on Windows and *nix.

Project description

processfamily
=============

A library for launching, maintaining, and terminating a family of long-lived python child processes on Windows and *nix.

The child processes can be launched from a console application or a Windows service / *nix daemon.
A simple line-oriented text-based control protocol is implemented over stdin / stdout that allows the child process to be cleanly shutdown.
For this reason, sys.stdin and sys.stdout are redirected to os.devnull in the child process.
By default, the output of the child process sys.stderr stream will be echoed on the parent sys.stderr stream.

In order to avoid orphaned processes, the child processes are created in a way that will ensure that they are killed if the parent dies.
On Windows this is implemented using a shared [Job Object](http://msdn.microsoft.com/en-us/library/ms684161(v=vs.85).aspx).
If the parent process is not already in a Job, it will create a Job Object, and add itself in to that job before any of the child processes are created.
For *nix this uses prctl PR_SET_PDEATHSIG setting.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

processfamily-0.3.zip (47.0 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page