Utility functions for common tasks when composing functions.
Project description
composetools
A library of utility functions for Pythonic function composition.
Most utilities are focused on transforming and dealing with iterables.
Install
pip install composetools
Functions
-
compose
Compose functions such that
compose(f, g)(x)
is equivalent tog(f(x))
-
pipe
Compose functions such that
pipe(f, g)(x)
is equivalent tof(g(x))
Utilities
unique
- Yield unique items of an iterable.each
- Curriedmap
.keep
- Curriedfilter
.mask
- Currieditertools.compress
.drop
- Currieditertools.filterfalse
.sort
- Curriedsorted
.flat
- Flatten an arbitrarily nested iterable to a desired depth.also
- Call a function and return its input, eg.also(print)(4)
will print 4 and return 4.
Develop
$ gh repo clone SeparateRecords/python-composetools
$ poetry install
$ poetry run python -m pytest tests.py
Licence
ISC
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
composetools-0.5.0.tar.gz
(2.9 kB
view hashes)
Built Distribution
Close
Hashes for composetools-0.5.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6fec6dba598593d7901feaf8218078fd1fab10efc150fa72011e171f37445537 |
|
MD5 | f4724b59b0c0a5234dd3bcc467d32416 |
|
BLAKE2b-256 | 07a42c147b54eb13f5536cc46a0b1533d54a10c20c073f0cefc033b49a216244 |