I\'m writing a Python application that needs both concurrency and asynchronicity. I\'ve had a few recommendations each for Twisted and Celery, but I\'m having trouble determini
Celery allows you to use asynchronous behavior of various async library like gevent and eventlet. So you can have best of both world.
Example using eventlet https://github.com/celery/celery/tree/master/examples/eventlet
Example using gevent https://github.com/celery/celery/tree/master/examples/gevent