benjaminws / python-stomp (http://just-another.net/python-stomp)

Implementation of the STOMP protocol in Python.

Clone this repository (size: 143.1 KB): HTTPS / SSH
$ hg clone http://bitbucket.org/benjaminws/python-stomp/
View at rev
python-stomp /
filename size last modified message
docs  
examples  
stompy  
tests  
.hgignore 121 B 6 months ago Added docs/.build to .hgignore
.hgtags 1.0 KB 5 weeks ago Added tag stompy-0.2.5 for changeset c6524a20d7eb
LICENSE 1.5 KB 11 months ago Add in some .hgignore defaults, LICENSE and README. …
README 1.4 KB 5 months ago Add thanks in README.
TODO 56 B 10 months ago Merge in changes from fork at…
setup.cfg 268 B 5 weeks ago Add upload_sphinx options for documentation.
setup.py 892 B 2 months ago Change status to stable

README

==========================================
 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 Perl's `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.

.. _`ActiveMQ`: http://activemq.apache.org/
.. _`Java Message Service`: http://java.sun.com/products/jms/
.. _`STOMP`: http://stomp.codehaus.org/
.. _`STOMP protocol specification`: http://stomp.codehaus.org/Protocol
.. _`Net::Stomp`: http://search.cpan.org/perldoc?Net::Stomp

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/