flask-celery icon indicating copy to clipboard operation
flask-celery copied to clipboard

Celery integration for Flask (SINCE CELERY 3.0 THIS IS NO LONGER NEEDED)

Results 12 flask-celery issues
Sort by recently updated
recently updated
newest added

Hello all. I noticed that the package is no longer being maintained. As much as I understand that using this package is not strictly necessary, I just had a really...

I am not able to understand properly how can I run the task every fixed time such that I can make changes in the database and use application context also....

Hi, Sorry for such a basic question, should I be able to create AbortableTask task like @app.task(bind=True, base=AbortableTask)?

The website always "Pending..." all the time. It doesn't support iE, either

Hi, I'm wondering how could I run manage.py in background? I tried `python mange.py celeryd &` but it doesn't work, when I exit the terminal celery seems to stop too

Hi, This might be a stupid question, since I am a first time user. I can define a route as such: @app.route("/celery", methods=['GET']) def celery(): from myTasks import calc calc.delay().get()...