Metadata-Version: 1.0
Name: stomper
Version: 0.2.1
Summary: This is a transport neutral client implementation of the STOMP protocol.
Home-page: http://code.google.com/p/stomper
Author: Oisin Mulvihill
Author-email: oisin dot mulvihill at gmail com
License: http://www.apache.org/licenses/LICENSE-2.0
Description: =======
        Stomper
        =======
        
        .. content:
        
        :Author:
        Oisin Mulvihill
        
        
        Introduction
        ------------
        
        This is a python client implementation of the STOMP protocol.
        
        The client is attempting to be transport layer neutral. This module provides
        functions to create and parse STOMP messages in a programatic fashion. The
        messages can be easily generated and parsed, however its up to the user to do
        the sending and receiving. The STOMP protocol specification can be found here:
        
        - `Stomp Protocol <http://stomp.codehaus.org/Protocol/>`_
        
        I've looked at the stomp client by Jason R. Briggs. I've based some of the
        'function to message' generation on how his client does it. The client can
        be found at the follow address however it isn't a dependancy.
        
        - `stompy <http://www.briggs.net.nz/log/projects/stomppy>`_
        
        In testing this library I run against ActiveMQ project. The server runs
        in java, however its fairly standalone and easy to set up. The projects
        page is here:
        
        - `ActiveMQ <http://activemq.apache.org/>`_
        
        
        Source Code
        -----------
        
        The code can be accessed via subversion via google project hosting. Further
        details can be found here:
        
        - `Stomper http://code.google.com/p/stomper/`_
        
        
        Examples
        --------
        
        Basic Usage
        ~~~~~~~~~~~
        
        To see some basic code usage example see "*example/stomper_usage.py*". The unit test
        "*tests/teststomper.py*" illustrates how to use all aspects of the code.
        
        
        Receive/Sender
        ~~~~~~~~~~~~~~
        
        The example "*receiver.py*" and "*sender.py*" show how messages and generated and then
        transmitted using the twisted framework. Other frameworks could be used instead.
        The examples also demonstrate the state machine I used to determine a response
        to received messages.
        
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
