Metadata-Version: 1.1
Name: rabbitstew
Version: 0.1.0
Summary: A command-line tool for publishing messages to RabbitMQ
Home-page: https://github.com/gmr/rabbitstew
Author: Gavin M. Roy
Author-email: gavinr@aweber.com
License: Copyright (c) 2015 Gavin M. Roy
All rights reserved.

Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:

 * Redistributions of source code must retain the above copyright notice, this
   list of conditions and the following disclaimer.
 * Redistributions in binary form must reproduce the above copyright notice,
   this list of conditions and the following disclaimer in the documentation
   and/or other materials provided with the distribution.
 * Neither the name of the rabbitstew application nor the names of its
   contributors may be used to endorse or promote products derived from this
   software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Description: rabbitstew
        ==========
        A small command-line tool that adheres to the Unix philospohy for publishing
        messages to RabbitMQ.
        
        ``rabbitstew`` takes input from ``stdin`` and publishes a message per line
        received. You can customize the exchange and routing key used, along with
        message properties. Additionally, you can enable publisher confirmations if
        desired.
        
        |Version| |Downloads| |Status| |License|
        
        Installation
        ------------
        rabbitstew is available from the `Python Package Index <https://pypi.python.org/pypi/rabbitstew>`_
        and can be installed via ``pip`` or ``easy_install``.
        
        Usage Example
        -------------
        
        .. code:: bash
        
            cat /var/log/messages | rabbitstew -H rabbit-server -r syslog.messages
        
        CLI Options
        -----------
        
        .. code::
        
            usage: rabbitstew [-h] [-H HOST] [-p PORT] [-s] [-v VHOST] [-u USER]
                              [-P PASSWORD] [-W] [-e EXCHANGE] [-r ROUTING_KEY] [-c]
                              [--add-user] [--app-id APP_ID] [--auto-id]
                              [--content-type VALUE] [--type TYPE] [-V] [--version]
        
            RabbitMQ message publisher
        
            optional arguments:
              -h, --help            show this help message and exit
              -H HOST               Server hostname (default: localhost)
              -p PORT               Server port (default: 5672)
              -s                    Use SSL to connect (default: False)
              -v VHOST              Server virtual host (default: /)
              -u USER               Server username (default: guest)
              -P PASSWORD           Server password (default: guest)
              -W                    Prompt for password (default: False)
              -f PATH               Read password from a file (default: None)
              -e EXCHANGE           Exchange to publish to (default: None)
              -r ROUTING_KEY        Routing Key to use (default: None)
              -c                    Confirm delivery of each message, exiting if a message
                                    delivery could not be confirmed (default: False)
              --add-user            Include the user in the message properties (default: False)
              --app-id APP_ID       Specify the app-id property of the message (default: rabbitstew)
              --auto-id             Create a unique message ID for each message (default: False)
              --content-type VALUE  Specify the content type of the message (default: None)
              --type TYPE           Specify the message type (default: None)
              -V                    Verbose output (default: False)
              --version             show program's version number and exit
        
        
        Version History
        ---------------
        
        - 0.1.0 - released *2015-02-02*
            - Initial Release
        
        .. |Version| image:: https://badge.fury.io/py/rabbitstew.svg?
           :target: http://badge.fury.io/py/rabbitstew
        
        .. |Status| image:: https://travis-ci.org/gmr/rabbitstew.svg?branch=master
           :target: https://travis-ci.org/gmr/rabbitstew
        
        .. |Downloads| image:: https://pypip.in/d/rabbitstew/badge.svg?
           :target: https://pypi.python.org/pypi/rabbitstew
        
        .. |License| image:: https://pypip.in/license/rabbitstew/badge.svg?
           :target: https://rabbitstew.readthedocs.org
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Communications
Classifier: Topic :: Internet
Classifier: Topic :: System
