Skip to main content

Thin MapReduce-like layer that wraps the Python multiprocessing library.

Project description

Thin MapReduce-like layer that wraps the Python multiprocessing library.

PyPI version and link. Read the Docs documentation status. GitHub Actions status. Coveralls test coverage summary.

Purpose

This package provides a streamlined interface for the built-in Python multiprocessing library. The interface makes it possible to parallelize in a succinct way (sometimes using only one line of code) a data workflow that can be expressed in a MapReduce-like form. More background information about this package’s design and implementation, as well a detailed use case, can be found in a related article.

Installation and Usage

This library is available as a package on PyPI:

python -m pip install mr4mp

The library can be imported in the usual way:

import mr4mp

Word-Document Index Example

Suppose we have some functions that we can use to build an index of randomly generated words:

from random import choice
from string import ascii_lowercase

def word(): # Generate a random 7-letter "word".
    return ''.join(choice(ascii_lowercase) for _ in range(7))

def index(identifier): # Build an index mapping some random words to an identifier.
    return {w:{identifier} for w in {word() for _ in range(100)}}

def merge(i, j): # Merge two index dictionaries i and j.
    return {k:(i.get(k,set()) | j.get(k,set())) for k in i.keys() | j.keys()}

We can then construct an index in the following way:

from timeit import default_timer

start = default_timer()
pool = mr4mp.pool()
pool.mapreduce(index, merge, range(100))
pool.close()
print("Finished in " + str(default_timer()-start) + "s using " + str(len(pool)) + " process(es).")

The above might yield the following output:

Finished in 0.664681524217187s using 2 process(es).

Suppose that we instead explicitly specify that only one process can be used:

pool = mr4mp.pool(1)

After the above modification, we might see the following output from the code block:

Finished in 2.23329004518571s using 1 process(es).

Development

All installation and development dependencies are fully specified in pyproject.toml. The project.optional-dependencies object is used to specify optional requirements for various development tasks. This makes it possible to specify additional options (such as docs, lint, and so on) when performing installation using pip:

python -m pip install .[docs,lint]

Documentation

The documentation can be generated automatically from the source files using Sphinx:

python -m pip install .[docs]
cd docs
sphinx-apidoc -f -E --templatedir=_templates -o _source .. && make html

Testing and Conventions

All unit tests are executed and their coverage is measured when using pytest (see the pyproject.toml file for configuration details):

python -m pip install .[test]
python -m pytest

Some unit tests are included in the module itself and can be executed using doctest:

python src/mr4mp/mr4mp.py -v

Style conventions are enforced using Pylint:

python -m pip install .[lint]
python -m pylint src/mr4mp test/test_mr4mp.py

Contributions

In order to contribute to the source code, open an issue or submit a pull request on the GitHub page for this library.

Versioning

Beginning with version 0.1.0, the version number format for this library and the changes to the library associated with version number increments conform with Semantic Versioning 2.0.0.

Publishing

This library can be published as a package on PyPI by a package maintainer. First, install the dependencies required for packaging and publishing:

python -m pip install .[publish]

Ensure that the correct version number appears in the pyproject.toml file and in any links to this package’s Read the Docs documentation that exist in this README document. Also ensure that the Read the Docs project for this library has an automation rule that activates and sets as the default all tagged versions. Create and push a tag for this version (replacing ?.?.? with the version number):

git tag ?.?.?
git push origin ?.?.?

Remove any old build/distribution files. Then, package the source into a distribution archive using the wheel package:

rm -rf build dist src/*.egg-info
python -m build --sdist --wheel .

Finally, upload the package distribution archive to PyPI using the twine package:

python -m twine upload dist/*

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

mr4mp-2.6.0.tar.gz (11.8 kB view details)

Uploaded Source

Built Distribution

mr4mp-2.6.0-py3-none-any.whl (7.9 kB view details)

Uploaded Python 3

File details

Details for the file mr4mp-2.6.0.tar.gz.

File metadata

  • Download URL: mr4mp-2.6.0.tar.gz
  • Upload date:
  • Size: 11.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.2

File hashes

Hashes for mr4mp-2.6.0.tar.gz
Algorithm Hash digest
SHA256 549cfde11427226afab14d63ae13c6d50f7396f4bf975cf3af508fb947f84dee
MD5 7f0d6e1c7c80fe3e5fb55758b82441aa
BLAKE2b-256 ff85d5ed0d3bb7881e7371c0a578f3a1ef7d867c98870713cdcc9399b8cbd1ce

See more details on using hashes here.

Provenance

File details

Details for the file mr4mp-2.6.0-py3-none-any.whl.

File metadata

  • Download URL: mr4mp-2.6.0-py3-none-any.whl
  • Upload date:
  • Size: 7.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.2

File hashes

Hashes for mr4mp-2.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 4913c319481f70a2c438c00058be92d732881730df059209f257ca469d60d44d
MD5 1fe5c6a8186ce1e6e2286c59879d8fdb
BLAKE2b-256 5f532eeda17fd7f2fc2523a7226766df8282e2bdf305a705f32bc660e3f7577e

See more details on using hashes here.

Provenance

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