Skip to main content

A library for incremental, in-memory map-reduces

Project description

The Scenic Overlook library contains datastructures for incremental map-reduces.

These datastructures are implemented as trees, and store at each node, intermediate values of the reduce. This means that when you slice or combine structures, the new output of the map-reduce can be efficiently computed. (by reusing old outputs from unchanged parts of the tree)

Typical usage looks like this:

#!/usr/bin/env python

from scenicoverlook import MapReduceLogic, ViewableList

mr = MapReduceLogic(reducer=lambda x, y: x + ' ' + y, initializer='')
l = ViewableList(['the', 'quick', 'brown', 'fox'])
print l.map_reduce(mr)                              # 'the quick brown fox'
print (l[:2] + ['stealthy'] + l[2:]).map_reduce(mr) # 'the quick stealthy brown fox'

See the pydocs for more examples:

https://github.com/pschanely/ScenicOverlook/blob/master/scenicoverlook/__init__.py

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

ScenicOverlook-0.2.0-py2.py3-none-any.whl (6.3 kB view hashes)

Uploaded Python 2 Python 3

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