22

I am trying to write a currying decorator in python. I got this far:

def curry(fun):    
    cache = []
    numargs = fun.func_code.co_argcount
    
    def new_fun(*args, **kwargs):
        print(args)
        print(kwargs)
        cache.extend(list(args))        
        if len(cache) >= numargs: # easier to do it explicitly than with exceptions            
            temp = []
            for _ in xrange(numargs):
                temp.append(cache.pop())
            fun(*temp)
            
    return new_fun

@curry
def myfun(a,b):
    print(a,b)

While for the following case this works fine:

myfun(5)
myfun(5)

For the following case it fails:

myfun(6)(7)

How can I do this correctly?


If you're just looking to bind arguments to a function and aren't interested in a specific design or the underlying computer science principles, see Python Argument Binders.

Karl Knechtel
  • 62,466
  • 11
  • 102
  • 153
ElfsЯUs
  • 1,188
  • 4
  • 14
  • 34

9 Answers9

28

The below implementation is naive, google for "currying python" for more accurate examples.

def curry(x, argc=None):
    if argc is None:
        argc = x.func_code.co_argcount
    def p(*a):
        if len(a) == argc:
            return x(*a)
        def q(*b):
            return x(*(a + b))
        return curry(q, argc - len(a))
    return p

@curry
def myfun(a,b,c):
    print '%d-%d-%d' % (a,b,c)



myfun(11,22,33)
myfun(44,55)(66)
myfun(77)(88)(99)
georg
  • 211,518
  • 52
  • 313
  • 390
  • Thanks man! Yah, I realized it needed to be recursive, but just had no idea how to implicitly create a function with n-1 arguments. Very cool! – ElfsЯUs Feb 27 '12 at 00:00
  • 6
    in python 2.6 or python 3, the line 3 should written as: argc = x.__code__.co_argcount – NullPointer Mar 23 '12 at 14:11
  • 5
    "Google for currying python": that's funny because it's now the top google result. – MB. Dec 01 '18 at 00:29
12

The source code for curry in the toolz library is available at the following link.

https://github.com/pytoolz/toolz/blob/master/toolz/functoolz.py

It handles args, kwargs, builtin functions, and error handling. It even wraps the docstrings back onto the curried object.

caot
  • 3,066
  • 35
  • 37
MRocklin
  • 55,641
  • 23
  • 163
  • 235
5

Many of the answers here fail to address the fact that a curried function should only take one argument.

A quote from Wikipedia:

In mathematics and computer science, currying is the technique of translating the evaluation of a function that takes multiple arguments (or a tuple of arguments) into evaluating a sequence of functions, each with a single argument (partial application).

Choosing to decorate it with recursion and without co_argcount makes for a decently elegant solution.

from functools import partial, wraps, reduce

def curry(f):
    @wraps(f)
    def _(arg):
        try:
            return f(arg)
        except TypeError:
            return curry(wraps(f)(partial(f, arg)))
    return _

def uncurry(f):
    @wraps(f)
    def _(*args):
        return reduce(lambda x, y: x(y), args, f)
    return _

As shown above, it is also fairly trivial to write an uncurry decorator. :) Unfortunately, the resulting uncurried function will allow any number of arguments instead of requiring a specific number of arguments, as may not be true of the original function, so it is not a true inverse of curry. The true inverse in this case would actually be something like unwrap, but it would require curry to use functools.wraps or something similar that sets a __wrapped__ attribute for each newly created function:

def unwrap(f):
    try:
        return unwrap(f.__wrapped__)
    except AttributeError:
        return f
Shashank
  • 13,713
  • 5
  • 37
  • 63
3

This one is fairly simple and doesn't use inspect or examine the given function's args

import functools


def curried(func):
    """A decorator that curries the given function.

    @curried
    def a(b, c):
        return (b, c)

    a(c=1)(2)  # returns (2, 1)
    """
    @functools.wraps(func)
    def _curried(*args, **kwargs):
        return functools.partial(func, *args, **kwargs)
    return _curried
Alex Gaudio
  • 1,894
  • 1
  • 16
  • 13
3

As it's cool to write currying decorators in python, I tried mine: 5 lines of code, readable, and tested curry function.

def curry(func):
    def curried(*args, **kwargs):
        if len(args) + len(kwargs) >= func.__code__.co_argcount:
            return func(*args, **kwargs)
        return (lambda *args2, **kwargs2:
                curried(*(args + args2), **dict(kwargs, **kwargs2)))
    return curried
Julien Palard
  • 8,736
  • 2
  • 37
  • 44
  • Julien, can your method be easily extended to curry *at* a specified position (partial eval)? – alancalvitti Sep 03 '19 at 13:43
  • @alancalvitti did you tried [functools.partial](https://docs.python.org/3/library/functools.html#functools.partial)? – Julien Palard Sep 03 '19 at 13:49
  • I've tested it but I don't see how it can automatically select the specified argument. For example, I'm looking for `curry_at(2)` (in general, `curry_at(n)`) to extract the 2nd (nth) argument in `args` for partial eval. – alancalvitti Sep 09 '19 at 19:47
2

Here is my version of curry that doesn't use partial, and makes all the functions accept exactly one parameter:

def curry(func):
"""Truly curry a function of any number of parameters
returns a function with exactly one parameter
When this new function is called, it will usually create
and return another function that accepts an additional parameter,
unless the original function actually obtained all it needed
at which point it just calls the function and returns its result
""" 
def curried(*args):
    """
    either calls a function with all its arguments,
    or returns another functiont that obtains another argument
    """
    if len(args) == func.__code__.co_argcount:
        ans = func(*args)
        return ans
    else:
        return lambda x: curried(*(args+(x,)))

return curried
  • Hi, this one is not working on all edge cases. I added the solution (with code) in my answer. By the way, I think this solution is by far most intuitive one! – crazzle Mar 17 '18 at 12:31
2

One-liner just for fun:

from functools import partial
curry = lambda f: partial(*[partial] * f.__code__.co_argcount)(f)

@curry
def add(x, y, z):
    return x + y + z

print(add(2)(3)(4))
# output = 9
czheo
  • 1,771
  • 2
  • 12
  • 22
  • Works like a charm! But could you please explain a bit what magic you are doing :D Is there a way to reverse arguments given to a target function? I want to use it within a pipe where target function would get initial value of the pipe and then each function would return the value to be used in the next function. It works nicely already with just defining initial value coming from a pipe as the last parameter `def change_age(new_age, person): but it just feels a bit clunky :D` – JSEvgeny Apr 19 '23 at 19:12
0

I think I've got a better one:

def curried (function):
    argc = function.__code__.co_argcount

    # Pointless to curry a function that can take no arguments
    if argc == 0:
        return function

    from functools import partial
    def func (*args):
        if len(args) >= argc:
            return function(*args)
        else:
            return partial(func, *args)
    return func

This solution uses Python's own functools.partial function instead of effectively recreating that functionality. It also allows you to pass in more arguments than the minimum, -allows keyword arguments,- and just passes through functions that don't have to take arguments, since those are pointless to curry. (Granted, the programmer should know better than to curry zero-arity or multi-arity functions, but it's better than creating a new function in that case.)

UPDATE: Whoops, the keyword argument part doesn't actually work right. Also, optional arguments are counted in the arity but *args are not. Weird.

James Jensen
  • 363
  • 3
  • 8
0

The solution from Roger Christman will not work with every constellation. I applied a small fix to also handle this situation:

curried_func(1)(2,3)

The small fix that makes it work with every constellation lies in the returned lambda:

def curried(func):
    def curry(*args):
        if len(args) == func.__code__.co_argcount:
            ans = func(*args)
            return ans
        else:
            return lambda *x: curry(*(args+x))
    return curry
crazzle
  • 271
  • 3
  • 12