This is a very simple API for interacting with lightweight queues. Currently queues that speak the memcached protocol, Amazon's SQS service, and Beanstalkd are supported. External backends can be easily defined and used as long as they conform to the BaseQueue API.
This library is designed to be configured either from a Django settings file or via environment variables. Heavy lifting is done by one of the backend libraries:
| Backend | Library | License |
| sqs | boto | MIT |
| memcached | python-memcached | PSF |
| cmemcache | GPL | |
| beanstalkd | beanstalkc | APL-2.0 |
| redisd (as of r12/0.4) | redis | MIT |
| zenqueued (as of r14/0.4) | zenqueue | MIT |
| dummy (as of r16/0.5) | built-in (useful for single-threaded testing) | MIT |
Any comments or feedback would be appreciated. Please note that the API may change in future versions based on feedback and use.