My favorites | Sign in
Project Logo
Project hosting will be READ-ONLY Wednesday at 8am PST due to brief network maintenance.
                
Code license: Apache License 2.0
Labels: python, activemq, stomp
Links:
Feeds:

Stomper

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:

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.

http://www.briggs.net.nz/log/projects/stomppy

I now test using the basic MorbidQ broker http://www.morbidq.com/ which is easy-installable "easy_install morbid". MorbidQ uses stomper as a dependancy so it will be automatically downloaded and installed with MorbidQ.

You can still use alternative brokers such as ActiveMQ. The server runs in java, however its fairly standalone and easy to set up. The projects page is here http://activemq.apache.org/

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.

I've also included "stompbuffer-rx.py" and "stompbuffer-tx.py" as examples of using the new stompbuffer module contributed by Ricky Iacovou.


Version History

0.2.2









Hosted by Google Code