Fun functional utilities
Project description
ag.funutils
Fun functional utilities for python. This library provides a chain
method and several operators that you can chain together to create pipelines of functional transformations, like with Lodash's chain or Clojure's threading macros.
The provided functions are "sugary". They do NOT provide performance optimizations, error handling, or guarantees of statelessness.
Each operator will take a transformation and return a function that applies that transformation to an iterable. Because most operators are wrappers around built-in functions like of the same name, they return iterables and the results of most chains will need to be converted to a list to be immediately useful. The documentation for associated standard library functions should largely be applicable to the provided operators.
Examples
Also see the tests.
import ag.funutils as fun
add_one = fun.map(lambda x: x + "1")
upper = fun.map(str.upper)
fun.chain(
["a", "b", "c", "d"],
add_one,
upper,
list
) # => ["A1", "B1", "C1", "D1"]
big_transform = [add_one, upper]
fun.chain(
["a", "b", "c", "d"],
*big_transform,
list
) # => ["A1", "B1", "C1", "D1"])
fun.chain(
["a", "b", "c", "d"],
fun.tap(print), # => "[a, b, c, d]"
*big_transform,
fun.tap(print), # => "[A1, B1, C1, D1]"
fun.sort(reverse=True),
list
) # => ["D1", "C1", "B1", "A1"]
fun.chain(
["a", "b", "c", "d"],
*big_transform,
fun.reduce(lambda acc, x: acc + x)
) # => "A1B1C1D1"
# Values that are tuples will be spread into the transformations,
# which lets you work with dicts.
data = {
'beep': 1,
'boop': 2,
'buup': 3,
}
add_one = fun.map(lambda k, v: (k, v + 1))
evens = fun.filter(lambda k, v: v % 2 == 0)
beep_buup = fun.reduce(lambda acc, k, v: f'{acc}{k}{v}', '')
result = fun.chain(
data.items(),
add_one,
evens,
add_one,
beep_buup
) # => 'beep3buup5'
Reference
ag.funutils.chain(data, *transforms)
:- Provides
data
as an argument to the firsttransform
, then the result of eachtransform
to the following one. Eachtransform
should be a function that takes a single, iterable argument and returns an iterable. The exception is thereduce
operator, which can return a single value if it is the last operator in the chain.
- Provides
ag.funutils.map(transform)
:- returns a function which takes an iterable and applies
transform
to each item of the iterable
- returns a function which takes an iterable and applies
ag.funutils.filter(condition)
:- returns a function which takes an iterable and returns an iterable with only items matching the condition
ag.funutils.sort(key=None, reverse=False)
:- returns a function which takes an iterable and return an iterable sorted according to the value returned by the
key
function. Compares items directly by default.
- returns a function which takes an iterable and return an iterable sorted according to the value returned by the
ag.funutils.reduce(transform, initial=None)
:- returns a function which takes an iterable and reduces it to a single value. If no
initial
value is provided, the first item is used as the initial value.
- returns a function which takes an iterable and reduces it to a single value. If no
ag.funutils.tap(fn)
:- returns a function which takes a single argument, passes it to
fn
, and returns it. Intended for debugging purposes, in particular:ag.funutils.tap(print)
.
- returns a function which takes a single argument, passes it to
Development
Requires pipenv and python 3.7.
$ ./scripts/setup.sh
$ ./scripts/test.sh
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
Built Distribution
File details
Details for the file ag.funutils-1.1.tar.gz
.
File metadata
- Download URL: ag.funutils-1.1.tar.gz
- Upload date:
- Size: 3.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.5.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c8dea3494ed1a1434119fb951c89e4bac7a8f18ce1497303c68417eccf67f469 |
|
MD5 | 2165a0263a850ec165a631105adca14e |
|
BLAKE2b-256 | 36051198ef5c0946c03d0e80765af37b5249061d7191ff6639bcdfb2cabd6dec |
File details
Details for the file ag.funutils-1.1-py3-none-any.whl
.
File metadata
- Download URL: ag.funutils-1.1-py3-none-any.whl
- Upload date:
- Size: 4.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.5.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b84e34937c24077f809e55794dbcf810f123aafeb7ac5835a5f279ebb319c426 |
|
MD5 | 03dbb0bac9358f7a0f2fdc7edbcd06c1 |
|
BLAKE2b-256 | 77cc0ccd0490b9f9012e89ceb46f1f757daaecbb955df4da12185ad1643b2340 |