Simple easy python lambda DSL
Lambderp is very easy to use, and models small lambda functions easily.
from lamderp import _
identity = _
even = filter(_ % 2 == 0, range(50))
odd = filter(_ % 2 == 1, range(50))
square = _ ** 2
pip install lamderp
Python lambda syntax is ugly and makes functional programming painful.