Metadata-Version: 2.0
Name: zkcelery
Version: 0.1.0
Summary: Celery tools for utilizng ZooKeeper
Home-page: https://github.com/brolewis/zkcelery
Author: Lewis Franklin
Author-email: lewis.franklin@gmail.com
License: BSD License
Keywords: Celery tasks mutex semaphore locks Zookeeper
Platform: any
Classifier: License :: OSI Approved :: BSD License
Classifier: Intended Audience :: Developers
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Distributed Computing
Requires-Dist: kazoo (>=1.0)

# zkcelery

ZKCelery is a collection of helpers for easily using ZooKeeper within Celery.


# Installation

Simply run `pip install zkcelery`


# Requirements

ZKCelery relies on [ZooKeeper](http://zookeeper.apache.org/).


# Usage

A new configuration variable is required in order to let ZKCelery know about your ZooKeeper servers:

    ZOOKEEPER_HOSTS = 'localhost:2181'

This is a comma-separated list of hosts to connect to.


