Installing

huey can be installed very easily using pip.

pip install huey

huey has no dependencies outside the standard library, but currently the only fully-implemented queue backend it ships with requires [redis](http://redis.io). To use the redis backend, you will need to install the python client.

pip install redis

Using git

If you want to run the very latest, feel free to pull down the repo from github and install by hand.

git clone https://github.com/coleifer/huey.git
cd huey
python setup.py install

You can run the tests using the test-runner:

python setup.py test

Table Of Contents

Previous topic

huey, a little task queue

Next topic

Getting Started

This Page