Lispy (and some haskelly) missing batteries for Python.
Project description
Python clearly wants to be an impure-FP language. A decorator with arguments is a curried closure - how much more FP can you get?
We provide some missing features for Python from the list processing tradition, plus a few bonus haskellisms.
We place a special emphasis on clear, pythonic syntax, as far as possible without MacroPy. Other design considerations are simplicity, robustness, and minimal dependencies (currently none).
Tail call optimization (TCO), TCO’d loops in FP style, call/ec, let & letrec, assign-once, multi-expression lambdas, def as a code block, dynamic assignment, memoize (also for generators and iterables), compose, folds and scans (left and right), unfold, lazy partial unpacking of iterables, functional sequence updates, pythonic lispy linked lists.
We also provide a curry that passes extra arguments through on the right, and calls a callable return value on the remaining arguments. This is now valid Python:
mymap = lambda f: curry(foldr, composerc(cons, f), nil) myadd = lambda a, b: a + b assert curry(mymap, myadd, ll(1, 2, 3), ll(2, 4, 6)) == ll(3, 6, 9)
For documentation and examples, see the project’s GitHub homepage.
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
Hashes for unpythonic-0.9.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0e3e7765ce355923e6c17ea5f2e54c8ea2bc4433ae770e02c0ac4498a164df29 |
|
MD5 | e85f309ed590c98935aeef3ebc22b8c5 |
|
BLAKE2b-256 | 2c574f90e25bf03a866c8f7a195f65267d383c96274b889c1db4b9bb205e73d1 |