Re: Celery task output

2016-08-24 Thread palansh agarwal
Hey, You need to refer the celery documentation. Whenever you submit a task to celery, it returns a uniques id for that task. Later you can use it to retrieve the results. This might help -> http://stackoverflow.com/questions/5544611/retrieve-a-task-result-object-given-a-task-id-in-celery Regards

Celery task output

2016-08-24 Thread Arshpreet Singh
I am adding few functions as celery task those are making calls to certain WebAPI, Parsing and filtering but returning results continuously. I want output of those results in my application view. Now I am not able to understand that how to get results of those functions in my application view when