Composable keyword function graphs
Project description
dask-funk provides an extension to dask that creates keyword named functions (hence the funk!) from dasks or function graphs represented as dictionaries. It is inspired by Plumatic’s wonderful Graph library for clojure.
Example
>>> from operator import add
>>> import daskfunk as dsf
>>> inc = lambda x: x + 1
>>> double = lambda n: n * 2
>>> d = {'n': inc, 'doubled': double}
>>> f = dsf.compile(d)
>>> result = f(x=2)
>>> result == {'n': 3, 'doubled': 6}
True
Installation
conda install dask-funk
or
pip install dask-funk
Please fix or point out any errors, inaccuracies or typos you notice.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
dask-funk-0.9.1.tar.gz
(20.8 kB
view hashes)