gevent-cooperative child processes and inter-process communication.
Project description
Changelog | gipc @ PyPI | gipc @ GitHub
From 2012 to 2018 gipc’s home was at bitbucket.org/jgehrcke/gipc. Since then development has continued on GitHub.
Overview
gipc (pronunciation as in “gipsy”) provides reliable child process management and non-blocking inter-process communication in the context of gevent.
Using Python’s multiprocessing package in the context of a codebase that also uses gevent is error-prone and may break the application in various subtle ways.
With gipc, multiprocessing.Process-based child processes can safely be created anywhere within your gevent-powered application. The API of multiprocessing.Process objects is provided in a gevent-cooperative way. Also, gipc provides a pipe-based transport layer for gevent-cooperative inter-greenlet and inter-process communication. gipc is lightweight and easy to integrate.
Code examples
Individual example programs can be found in the examples directory.
Documentation
Visit https://gehrcke.de/gipc for installation instructions, API docs, code examples, and in-depth information.
Platform support
The current version of gipc works on CPython 2.7/3.6/3.7/3.8. It supports gevent versions 1.4 and 1.5 and supports both, Unix-like systems as well as Windows. On Unix-like systems, gipc also works with PyPy2.7 and PyPy3.
gipc’s test suite is automatically executed on Linux, Darwin (macOS), and Windows.
Who uses it?
disco (Discord Python library)
Are you successfully using gipc in your project? Please drop me a line!
How to run the tests?
gipc’s tests are written for pytest. With the repository’s root directory being the current working directory you can run the tests like this:
$ pip install -r requirements-tests.txt $ cd test && pytest -vv --cov-report term --cov-report html --cov gipc
Contact & help
Your feedback and questions are highly appreciated. Please contact me via mail at jgehrcke@googlemail.com or use the GitHub issue tracker.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.