Metadata-Version: 1.0
Name: djamqpconsumer
Version: 0.5
Summary: Blocking custom django command to consume a AMQP queue
Home-page: http://github.com/codesyntax/djamqpconsumer
Author: Aitzol Naberan
Author-email: anaberan@gmail.com
License: GPL
Description: What is this
        ============
        
        Adds a custom command which opens a blocking connection with an AMQP server and passes messages to a callback fuction
        
        Settings
        --------
        
        This settings are requiered for the command run
        
        ``COM_BROKER``
        
        AMQP server ip
        
        ``COM_VHOST``
        
        AMQP server Virtual Host
        
        ``COM_USERNAME`` 
        
        AMQP server User name for the virtual host
        
        
        ``COM_PASSWORD``
        
        Username's password
        
        ``COM_QUEUE``
        
        Which queue listen to
        
        ``CONSUMER_CALLBACK``
        
        Path to the callback func. ex.: djamqpconsumer.printconsumer.printdata
        
        Install
        -------
        
        Use pip to install from PyPI::
        
          pip install djamqpconsumer
        
        
        Usage
        -----
        
        Add ``djamqpconsumer`` to your settings.py file::
        
            INSTALLED_APPS = (
                ...
                'djamqpconsumer',
                ...
            )
        
        Use with manage.py::
        
          manage.py consumer [debug]
        
        0.5 (2014-02-21)
        ================
        - Add pika dependency
        
Keywords: django amql pika
Platform: UNKNOWN
