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.
from ag.funutils import 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
dataas an argument to the firsttransform, then the result of eachtransformto the following one. Eachtransformshould be a function that takes a single, iterable argument and returns an iterable. The exception is thereduceoperator, 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
transformto 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
keyfunction. 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
initialvalue 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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ag.funutils-1.2.tar.gz.
File metadata
- Download URL: ag.funutils-1.2.tar.gz
- Upload date:
- Size: 3.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.8.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3e589c48e8461bf7b0fdf28c7859db944129b80cecc6ff834a3e59b29376da52
|
|
| MD5 |
6748ee82f6a7a57f1da1fcd75d37a6be
|
|
| BLAKE2b-256 |
da6778c46b97e7697642144675acc9942c0e4013d4666d4909816305b0e85816
|
File details
Details for the file ag.funutils-1.2-py3-none-any.whl.
File metadata
- Download URL: ag.funutils-1.2-py3-none-any.whl
- Upload date:
- Size: 4.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.8.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c5b9a53d416ceb3625ac7d686a76eb91f7d829f36df78802b14fccd40b9f4ba1
|
|
| MD5 |
8efbc88d12cd2bb27a4f12c0c880fe6a
|
|
| BLAKE2b-256 |
35a7318a95a7cbeb239b89207b5bd71faf6e886b0808e1b8878edc175ff4bb63
|