How does one check whether a task is running in celery (specifically, I\'m using celery-django)?
I\'ve read the documentation, and I\'ve googled, but I can\'t see a
res = method.delay() print(f"id={res.id}, state={res.state}, status={res.status} ") print(res.get())