Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rasbt/mputil
Utility functions for Python's multiprocessing standard library module
https://github.com/rasbt/mputil
multiprocessing python
Last synced: 12 days 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 (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-08-01T17:46:00.000Z (over 6 years ago)
- Last Synced: 2024-05-14T00:06:17.058Z (6 months ago)
- Topics: multiprocessing, python
- Language: Python
- Size: 7.81 KB
- Stars: 36
- Watchers: 4
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
Awesome Lists containing this project
README
[![PyPI version](https://badge.fury.io/py/mputil.svg)](http://badge.fury.io/py/mputil)
![Python 3.6](https://img.shields.io/badge/python-3.6-blue.svg)
![License](https://img.shields.io/badge/license-MIT-blue.svg)# 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