multproc
multproc is a Python module that provides support for creating and managing processes. It is part of the standard library and aims to offer a more intuitive and Pythonic interface for multiprocessing compared to the lower-level `os.fork` and `subprocess` modules. The primary goal of multproc is to simplify the use of multiple processes for parallel execution of tasks.
The module allows users to create new processes easily, manage their execution, and communicate between them.
multproc also includes tools for managing pools of worker processes, which can be used to distribute tasks