group # we can bind arguments to functions # without executing them >>> step1 = mul.s(3, 4) >>> step1 tasks.mul(3, 4) $ python -i tasks.py $ cat tasks.py $ celery worker -A tasks from celery import Celery cl = Celery('tasks', broker='...', backend='...') @cl.task def add(x, y): return x + y @cl.task def mul(x, y): return x * y