celery==5.6.3
# Distributed Task Queue.
$ pip install celery
downloads/wk
0
license
BSD-3-Clause
version
5.6.3
python
>=3.9
What is celery?
Celery is a Python library for running tasks asynchronously across distributed workers, allowing you to offload time-consuming operations from your main application. Developers use it to process background jobs, handle scheduled tasks, and scale workloads across multiple machines by queuing tasks and executing them independently. It works with message brokers like RabbitMQ or Redis to manage communication between your application and worker processes.
Keywords
#task #job #queue #distributed #messaging #actor
Author
Ask Solem