rq==2.10.0
# RQ is a simple, lightweight, library for creating background jobs, and processing them.
$ pip install rq
downloads/wk
3,145,828
license
—
version
2.10.0
python
>=3.10
What is rq?
RQ is a Python library for creating and processing background jobs, allowing you to offload time-consuming tasks from your main application to be executed asynchronously. Developers use RQ when they need to run tasks like sending emails, processing files, or performing calculations without blocking their web requests or user interactions. It integrates with Redis to queue and manage jobs, making it straightforward to scale background work across multiple workers.
Links