Django-RQ

Django integration with RQ, a Redis based Python queuing library. Django-RQ is a simple app that allows you to configure your queues in Django's settings.py and easily use them in your project.
Support Django-RQ
If you find django-rq useful, please consider supporting its development via Tidelift.
Requirements
Installation
- Install
django-rq (or download from PyPI):
pip install django-rq
- Add
django_rq to INSTALLED_APPS in settings.py:
INSTALLED_APPS = (
# other apps
"django_rq",
)