Metadata-Version: 1.0
Name: Kuyruk
Version: 0.9.0
Summary: A distributed task runner
Home-page: http://github.com/cenkalti/kuyruk
Author: Cenk Altı
Author-email: cenkalti@gmail.com
License: UNKNOWN
Description: Kuyruk
        ============
        
        Kuyruk is a simple and easy way of distributing tasks to run on other servers.
        It uses `RabbitMQ <http://www.rabbitmq.com>`_ message broker for routing tasks.
        
        .. image:: https://travis-ci.org/cenkalti/kuyruk.png
           :target: https://travis-ci.org/cenkalti/kuyruk
        
        
        How to install?
        ---------------
        
        .. code-block:: bash
        
           $ pip install kuyruk
        
        
        How to run tests?
        -----------------
        
        .. code-block:: bash
        
           $ git clone git://github.com/cenkalti/kuyruk.git
           $ cd kuyruk
           $ pip install -r kuyruk/test/requirements.txt
           $ nosetests
        
        
        How to define tasks?
        --------------------
        
        Instantiate a ``Kuyruk`` object somewhere.
        Then just put a ``kuyruk.task`` decorator on top of your function that you
        want to run in background. After decorating, when you call the function it
        will send the task to default queue instead of invoking it. Since Kuyruk does
        not support a result backend yet you should not be using the return value of
        the function.
        
        .. code-block:: python
        
           from kuyruk import Kuyruk
        
           kuyruk = Kuyruk()
        
           @kuyruk.task
           def echo(message):
               print message
        
        
        How to run the worker?
        ----------------------
        
        Running the binary ``kuyruk`` is enough for processing the tasks in the
        default queue.
        
        .. code-block:: bash
        
           $ kuyruk
        
Keywords: rabbitmq distributed task queue
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Software Development :: Object Brokering
Classifier: Topic :: System :: Distributed Computing
