RETIRED, further work has moved to Debian project infrastructure
Go to file
OpenDev Sysadmins 4afe64e854 OpenDev Migration Patch
This commit was bulk generated and pushed by the OpenDev sysadmins
as a part of the Git hosting and code review systems migration
detailed in these mailing list posts:

http://lists.openstack.org/pipermail/openstack-discuss/2019-March/003603.html
http://lists.openstack.org/pipermail/openstack-discuss/2019-April/004920.html

Attempts have been made to correct repository namespaces and
hostnames based on simple pattern matching, but it's possible some
were updated incorrectly or missed entirely. Please reach out to us
via the contact information listed at https://opendev.org/ with any
questions you may have.
2019-04-19 19:45:26 +00:00
autobahn update changelog; bump version 2016-05-26 21:15:27 +02:00
debian Bumped debhelper compat version to 10 2016-11-24 00:04:24 +01:00
docs update changelog; bump version 2016-05-26 21:15:27 +02:00
examples Merge tag 'v0.14.1' into master+dfsg 2016-06-15 10:08:09 +02:00
twisted/plugins Work-around old vs. new twisted client-endpoint parser classes 2015-12-05 16:58:40 -07:00
.coveragerc tox and travis improvements 2015-08-14 11:26:47 +08:00
.gitignore fix node configs for examples 2016-01-31 10:54:32 +01:00
.gitreview OpenDev Migration Patch 2019-04-19 19:45:26 +00:00
.travis.yml fix versions 2016-05-26 20:25:41 +02:00
DEVELOPERS.md more cleanup 2016-05-01 18:11:06 +02:00
LICENSE change license from Apache 2.0 to MIT - after positive acknowledge from all contributors 2015-02-19 19:19:09 +01:00
MANIFEST.in fix tox; cleanup 2015-03-10 00:18:09 +01:00
Makefile ok, works now 2016-05-01 09:31:47 +02:00
README.rst more cleanup 2016-05-01 18:11:06 +02:00
requirements-rtd.txt fix RTD 2016-05-01 13:43:43 +02:00
setup.cfg produce wheel; some cleanup/polish 2016-04-10 12:10:19 +02:00
setup.py unpin tx; modify travis setup 2016-05-26 18:05:04 +02:00
tox.ini fix versions 2016-05-26 20:25:41 +02:00

README.rst

Autobahn|Python

WebSocket & WAMP for Python on Twisted and asyncio.

Version Downloads Build Status Coverage Docs

Introduction

Autobahn|Python is a subproject of Autobahn and provides open-source implementations of

for Python 2 and 3, and running on Twisted and asyncio.

You can use Autobahn|Python to create clients and servers in Python speaking just plain WebSocket or WAMP.

WebSocket allows bidirectional real-time messaging on the Web and beyond, while WAMP adds real-time application communication on top of WebSocket.

WAMP provides asynchronous Remote Procedure Calls and Publish & Subscribe for applications in one protocol running over WebSocket. WAMP is a routed protocol, so you need a WAMP Router to connect your Autobahn|Python based clients. We provide Crossbar.io, but there are other options as well.

Features

  • framework for WebSocket and WAMP clients and servers
  • compatible with Python 2.6, 2.7, 3.3 and 3.4
  • runs on CPython, PyPy and Jython
  • runs under Twisted and asyncio - implements WebSocket RFC6455 and Draft Hybi-10+
  • implements WebSocket compression
  • implements WAMP, the Web Application Messaging Protocol
  • high-performance, fully asynchronous implementation
  • best-in-class standards conformance (100% strict passes with Autobahn Testsuite)
  • message-, frame- and streaming-APIs for WebSocket
  • supports TLS (secure WebSocket) and proxies
  • Open-source (MIT license)

Show me some code

To give you a first impression, here are two examples. We have lot more in the repo.

WebSocket Echo Server

Here is a simple WebSocket Echo Server that will echo back any WebSocket message received:

from autobahn.twisted.websocket import WebSocketServerProtocol
# or: from autobahn.asyncio.websocket import WebSocketServerProtocol

class MyServerProtocol(WebSocketServerProtocol):

    def onConnect(self, request):
        print("Client connecting: {}".format(request.peer))

    def onOpen(self):
        print("WebSocket connection open.")

    def onMessage(self, payload, isBinary):
        if isBinary:
            print("Binary message received: {} bytes".format(len(payload)))
        else:
            print("Text message received: {}".format(payload.decode('utf8')))

        # echo back message verbatim
        self.sendMessage(payload, isBinary)

    def onClose(self, wasClean, code, reason):
        print("WebSocket connection closed: {}".format(reason))

To actually run above server protocol, you need some lines of boilerplate.

WAMP Application Component

Here is a WAMP Application Component that performs all four types of actions that WAMP provides:

  1. subscribe to a topic
  2. publish an event
  3. register a procedure
  4. call a procedure
from autobahn.twisted.wamp import ApplicationSession
# or: from autobahn.asyncio.wamp import ApplicationSession

class MyComponent(ApplicationSession):

    @inlineCallbacks
    def onJoin(self, details):

        # 1. subscribe to a topic so we receive events
        def onevent(msg):
            print("Got event: {}".format(msg))

        yield self.subscribe(onevent, 'com.myapp.hello')

        # 2. publish an event to a topic
        self.publish('com.myapp.hello', 'Hello, world!')

        # 3. register a procedure for remote calling
        def add2(x, y):
            return x + y

        self.register(add2, 'com.myapp.add2');

        # 4. call a remote procedure
        res = yield self.call('com.myapp.add2', 2, 3)
        print("Got result: {}".format(res))

Above code will work on Twisted and asyncio by changing a single line (the base class of MyComponent). To actually run above application component, you need some lines of boilerplate and a WAMP Router.