Installation

Stable release

To install Yet Another Redis Queue, run this command in your terminal:

pip install yarqueue

Yarqueue comes with a number of optional extras.

# for a self-contained python implementation of redis
pip install yarqueue[redislite]

# for the backported pickle protocol 5 in python 3.6 and 3.7
pip install yarqueue[pickle5]

# for the command line queue watching utility
pip install yarqueue[cli]

# for the HTTP queue watching utility
pip install yarqueue[http]

# for all of the above
pip install yarqueue[all]

If you don’t have pip installed, this Python installation guide can guide you through the process.

From sources

The sources for Yet Another Redis Queue can be downloaded from the Github repo.

You can either clone the public repository:

$ git clone git://github.com/clbarnes/yarqueue

Or download the tarball:

$ curl  -OL https://github.com/clbarnes/yarqueue/tarball/master

Once you have a copy of the source, you can install it with:

$ python setup.py install