asksol / python-stomp

fork of python-stomp

stompy is a fork of the STOMP client python-stomp, with support for non-blocking, polling and multiple subscriptions per connection.

Clone this repository (size: 101.6 KB): HTTPS / SSH
$ hg clone http://bitbucket.org/asksol/python-stomp/
commit 61: 2e14827c970c
parent 60: 17e1a51966bd
Fix some pep8 badness that I introduced when resolving conflicts defaulttip
Benjamin Smith / benjaminws
7 months ago
View at rev
python-stomp /
filename size last modified message
docs  
examples  
stompy  
tests  
.hgignore 121 B 7 months ago Added docs/.build to .hgignore
LICENSE 1.5 KB 13 months ago Add in some .hgignore defaults, LICENSE and README. …
README 1.2 KB 7 months ago Renamed from four to stompy
TODO 56 B 12 months ago Merge in changes from fork at…
setup.cfg 152 B 7 months ago Renamed from four to stompy
setup.py 830 B 7 months ago Renamed from four to stompy

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/asksol/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