Python task queue alternatives and frameworks [closed]
I wrote Dramatiq specifically because of my increasing frustration with Celery having used it professionally for years. Check out the motivation page the "why" and a feature comparison between Dramatiq, Celery and RQ. Some highlights:
- actively developed and used in production
- great docs
- automatic retries
- code auto-reload
- locks and rate limiting
- redis and rabbitmq support
One new alternative is django-carrot, which came about due to our requirement for a lightweight alternative to Celery, while still providing support for RabbitMQ (I think the other alternatives you've mentioned are all based on Redis)
Django-carrot is still under development but is expected to go into production at my company in the next few weeks
Disclaimer - I'm the author of django-carrot
RabbitMQ guys recommend Pika library: https://github.com/pika/pika You can find simple and intuitive examples on their website: https://www.rabbitmq.com/tutorials/tutorial-one-python.html