stompy - Python STOMP client libraryΒΆ

This is useful for connecting to and communicating with Apache ActiveMQ (an open source Java Message Service (JMS) message broker) or other brokers with support for the STOMP protocol.

The majority of the methods available take a single argument; a dictionary. This dictionary should contain the necessary bits you need to pass to the STOMP server. It is outlined in each method exactly what it needs to work.

For specifics on the protocol, see the STOMP protocol specification.

This library is basically a Python implementation of Perls Net::Stomp.

To enable the ActiveMQ Broker for STOMP add the following to the activemq.xml configuration:

<connector>
    <serverTransport uri="stomp://localhost:61613"/>
</connector>

See http://bitbucket.org/benjaminws/python-stomp/ for latest code.

See http://packages.python.org/stompy/ for latest documentation.

Thanks for patches and support go out to:

Ask Solem Hoel (asksol) http://github.com/ask

Victor Ng (crankycoder) http://crankycoder.com/

Justin Azoff (justinazoff) http://www.bouncybouncy.net/

Previous topic

stompy - Python STOMP Client Documentation

Next topic

API Reference

This Page