https://github.com/rasbt/mputil
Utility functions for Python's multiprocessing standard library module
https://github.com/rasbt/mputil
multiprocessing python
Last synced: 2 months ago
JSON representation
Utility functions for Python's multiprocessing standard library module
- Host: GitHub
- URL: https://github.com/rasbt/mputil
- Owner: rasbt
- License: mit
- Created: 2017-04-29T04:25:40.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-08-01T17:46:00.000Z (almost 7 years ago)
- Last Synced: 2025-04-12T15:59:29.065Z (3 months ago)
- Topics: multiprocessing, python
- Language: Python
- Size: 7.81 KB
- Stars: 39
- Watchers: 3
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
Awesome Lists containing this project
README
[](http://badge.fury.io/py/mputil)

# mputil
Utility functions for Python's multiprocessing standard library module
## Documentation
Mputil is (currently) a rather small package that provides functions for memory-efficient multi-processing, based Python's `multiprocessing` standard library. Mputil doesn't have a full-blown documentation, yet. However, you can find explanations and usage examples in the Jupyter Notebook that is references in the "Examples" section below.
## Examples
- [`lazy_map` and `lazy_imap`](https://github.com/rasbt/mputil/blob/master/examples/lazy_map-lazy_imap.ipynb)
## Installation
The `mputil` package can be installed via `pip`:
pip3 install mputilAlternatively, if you are using Anaconda/Miniconda, you can install `mputil` via the conda package manager from the conda-forge channel as follows:
conda install mputil -c conda-forge