Metadata-Version: 2.1
Name: stompest.twisted
Version: 2.3.0
Summary: Twisted STOMP client based upon the stompest API.
Home-page: https://github.com/nikipore/stompest
Author: Jan Müller
Author-email: nikipore@gmail.com
License: Apache License 2.0
Keywords: stomp twisted activemq rabbitmq apollo
Classifier: Development Status :: 5 - Production/Stable
Classifier: Framework :: Twisted
Classifier: Topic :: System :: Networking
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: stompest==2.3.0
Requires-Dist: twisted>=16.4.0

stomp, stomper, stompest!
=========================

This package provides the asynchronous STOMP client based upon the `stompest <https://pypi.python.org/pypi/stompest/>`_ library. It leverages the power of `Twisted <http://twistedmatrix.com/>`_, a very mature and powerful asynchronous programming framework. The client supports

- destination-specific message and error handlers (with default "poison pill" error handling)
- concurrent message processing
- graceful shutdown, and connect, receipt, and disconnect timeouts
- optional TLS/SSL support (TLS support in Twisted must be activated via ``pip install 'twisted[tls]'``)

Installation
============

You may install this package via ``pip install stompest.twisted`` or manually via ``python setup.py install``.

Questions or Suggestions?
=========================
Feel free to `open an issue <https://github.com/nikipore/stompest/issues/>`_ or post a question on the `forum <http://groups.google.com/group/stompest/>`_.

Acknowledgements
================
* Version 1.x of stompest was written by `Roger Hoover <http://github.com/theduderog/>`_ at `Mozes <http://www.mozes.com/>`_ and deployed in their production environment.
* Kudos to `Oisin Mulvihill <https://github.com/oisinmulvihill/>`_, the developer of `stomper <http://code.google.com/p/stomper/>`_! The idea of an abstract representation of the STOMP protocol lives on in stompest.

Documentation & Code Examples
=============================
The stompest API is `fully documented here <http://nikipore.github.com/stompest/>`_.
