Skip to main content

WebSocket client & server library, WAMP real-time framework

Project description

WebSocket & WAMP for Python on Twisted and asyncio.

Version Build Status Coverage Docs Docker

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.7 and 3.4 or later (including 3.7)

  • 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: Client Server)

  • message-, frame- and streaming-APIs for WebSocket

  • supports TLS (secure WebSocket) and proxies

  • Open-source (MIT license)


Native vector extensions (NVX)

Autobahn contains NVX, a network accelerator library that provides SIMD accelerated native vector code for WebSocket (XOR masking) and UTF-8 validation.


WAMP Serializers

Above is for advanced uses. In general we recommend to use CBOR where you can, and JSON (from the standard library) otherwise.


To install Autobahn with all available serializers:

pip install autobahn[serializers]

or (development install)

pip install -e .[serializers]

Further, to speed up JSON on CPython using ujson, set the environment variable:

AUTOBAHN_USE_UJSON=1

To use cbor2, an alternative, highly flexible and standards complicant CBOR implementation, set the environment variable:

AUTOBAHN_USE_CBOR2=1

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.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

autobahn-19.9.2.tar.gz (589.9 kB view details)

Uploaded Source

Built Distribution

autobahn-19.9.2-py2.py3-none-any.whl (754.0 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file autobahn-19.9.2.tar.gz.

File metadata

  • Download URL: autobahn-19.9.2.tar.gz
  • Upload date:
  • Size: 589.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for autobahn-19.9.2.tar.gz
Algorithm Hash digest
SHA256 985401e0af1c5f3fb59a209681ee878194c23fe88f865f6157679aa1db386724
MD5 9c2ca605f930616b822858349a58e8d9
BLAKE2b-256 f199af285b10c5b00828d73e061c55ad1e2b07d456be10c00cd812dfe902ab5e

See more details on using hashes here.

File details

Details for the file autobahn-19.9.2-py2.py3-none-any.whl.

File metadata

  • Download URL: autobahn-19.9.2-py2.py3-none-any.whl
  • Upload date:
  • Size: 754.0 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for autobahn-19.9.2-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 0a0af8804a2767308b4309abdba356191d3986b5cf3285144fa45bcda20520e8
MD5 c9b047d6de0ef0b6c9f9819f86569ce5
BLAKE2b-256 08e1618bf5abb169ce1ed6574ddd05f68588ab1245e9aa0615d0437b47b2a5ee

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page