rq
Simple job queues for Python (by rq)
django-rest-framework
Web APIs for Django. 🎸 (by encode)
rq | django-rest-framework | |
---|---|---|
30 | 209 | |
10,320 | 29,412 | |
0.4% | 0.2% | |
9.0 | 8.5 | |
5 days ago | 12 days ago | |
Python | Python | |
GNU General Public License v3.0 or later | GNU General Public License v3.0 or later |
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
rq
Posts with mentions or reviews of rq.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2024-08-18.
-
Show HN: PgQueuer – Transform Your PostgreSQL into a Powerful Job Queue
Most of the small python alternatives I've seen use Redis as backend:
- https://github.com/rq/rq
- RQ: Simple Job Queues for Python
- Show HN: Drop-In SQS Replacement Based on SQLite
-
Redis Re-Implemented with SQLite
That's pretty cool. Reckon it would work with existing code that calls Redis over the wire for RQ?
https://python-rq.org
-
The Many Problems with Celery
https://github.com/rq/rq is to the rescue.
-
Keep the Monolith, but Split the Workloads
We use RQ[0], it has Redis as a dependency. It’s pretty straightforward and we’re very happy with it. If you are using Django you may want to look at Django RQ[1] as well. RQ has built in scheduling capabilities these days, but historically it did not so we used (and still use) RQ Scheduler[2] which I think still has some advantages over the built in stuff.
[0] https://python-rq.org/
-
SQL Maxis: Why We Ditched RabbitMQ and Replaced It with a Postgres Queue
Also had a similar experience using RabbitMQ with Django+Celery. Extremely complicated and workers/queues would just stop for no reason.
Moved to Python-RQ [1] + Redis and been rock solid for years now.
[1] https://python-rq.org/
- Ask HN: Redis Queue Hacks and Questions
- What libraries do you use the most alongside django?
-
Recommendations other than celery to send an API processing in background, which would only take 5 mins to process and API usage would be once a month or so.
Yep, rq is simple and good: https://python-rq.org/ It also has a Django wrapper: https://github.com/rq/django-rq
django-rest-framework
Posts with mentions or reviews of django-rest-framework.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2025-05-10.
-
Why Django REST Framework doesn't show your custom validation error messages (and what to do about it)
The GitHub Discussion: link
-
How to Build RESTful APIs with Django
Django’s "batteries-included" philosophy makes it an excellent choice for API development. With Django REST Framework (DRF), you get:
-
Why and How to Patch a Python Package in Nix
I am maintaining a Python codebase that is based on Django and Django REST Framework (DRF). The codebase uses Nix for development, testing, CI/CD and packaging.
-
Django Rest framework Now EP01: Poetry
Django Rest framework
-
Building a REST API with Django REST Framework: A Beginners Guide
Explore the Django REST Framework Documentation for advanced topics.
-
Modern JavaScript for Django Developers
I've seen some companies using React with Django REST Framework [1], to keep the benefits of Django (I'm not a Django dev so I will have to guess, the ORM and project structure?) while having a strong separation between front and back (separate projects, teams, deploys, etc).
[1] https://www.django-rest-framework.org
-
Top 20 Python API Frameworks with OpenAPI Support
Django REST Framework is a powerful and flexible toolkit for building Web APIs using Django, the popular high-level Python web framework. Zuplo proudly sponsors the DRF project to continue improving the Django API development ecosystem.
-
Django is for everyone.
I think people tend to consider Django either for building old-school, industrial-strength monolith apps or for APIs and using something like React for the front-end. I’m here to tell you that plain old Django is a great option even for your personal websites! In my opinion, if you need a database, you should use Django1.
-
Emulating Rails-like resource controllers in a server-rendered Django app
This post will extend Django REST Framework's ViewSet and SimpleRouter to provide a Rails-like request handler class + resource routing in server-render Django applications. It also features form-level method spoofing for PUT, PATCH and DELETE requests via custom middleware.
-
Using Python to Dump Data into Django Models for Testing Frontend or API Endpoints:A Complete Django REST API Tutorial
Django Rest Framework
What are some alternatives?
When comparing rq and django-rest-framework you can also consider the following projects:
celery - Distributed Task Queue (development branch)
django-ninja - 💨 Fast, Async-ready, Openapi, type hints based framework for building APIs
huey - a little task queue for python
connexion - Connexion is a modern Python web framework that makes spec-first and api-first development easy.
KQ - Kafka-based Job Queue for Python
Dependency Injector - Dependency injection framework for Python