July 2019
Beginner to intermediate
302 pages
9h 38m
English
Celery can be installed simply from PyPI:
$ pip install celery
To make Celery work with Flask, we will need to modify our Flask app config file a bit. Here, we will use Redis as the broker (thanks to its simplicity).
We will use the application from the previous recipe and implement Celery in the same manner.
Read now
Unlock full access