[Answered ]-Basic celery task function call from inside a django function

2👍

Almost as simple as you said:

calculator.apply_async()

OR

calculator.delay()

See the docs on how to call tasks for more details.

👤Seb D.

Leave a comment