To get started:
Install celery pip install celery
configure celery (head to the remarks section)
from __future__ import absolute_import, unicode_literals
from celery.decorators import task
@task
def add_number(x, y):
return x + y
You can run this asynchronously by using the ....