autobahn


Nameautobahn JSON
Version 23.6.2 PyPI version JSON
download
home_pagehttps://github.com/crossbario/autobahn-python
SummaryWebSocket client & server library, WAMP real-time framework
upload_time2023-06-14 07:27:13
maintainer
docs_urlNone
authortypedef int GmbH
requires_python>=3.9
licenseMIT License
keywords autobahn crossbar websocket realtime rfc6455 wamp rpc pubsub twisted asyncio xbr data-markets blockchain ethereum
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            Autobahn\|Python
================

WebSocket & WAMP for Python on Twisted and asyncio.

| |Version|  |CI Test Status|  |CI Deploy Status|  |CI Docker Status|  |CI EXE Status|  |Docs|  |Docker Images|  |EXE Download|

--------------

| **Quick Links**: `Source Code <https://github.com/crossbario/autobahn-python>`__ - `Documentation <https://autobahn.readthedocs.io/en/latest/>`__ - `WebSocket Examples <https://autobahn.readthedocs.io/en/latest/websocket/examples.html>`__ - `WAMP Examples <https://autobahn.readthedocs.io/en/latest/wamp/examples.html>`__
| **Community**: `Forum <https://crossbar.discourse.group/>`__ - `StackOverflow <https://stackoverflow.com/questions/tagged/autobahn>`__ - `Twitter <https://twitter.com/autobahnws>`__ - `IRC #autobahn/chat.freenode.net <https://webchat.freenode.net/>`__
| **Companion Projects**: `Autobahn|JS <https://github.com/crossbario/autobahn-js/>`__ - `Autobahn|Cpp <https://github.com/crossbario/autobahn-cpp>`__ - `Autobahn|Testsuite <https://github.com/crossbario/autobahn-testsuite>`__ - `Crossbar.io <https://crossbar.io>`__ - `WAMP <https://wamp-proto.org>`__

Introduction
------------

**Autobahn\|Python** is a subproject of `Autobahn <https://crossbar.io/autobahn>`__ and provides open-source
implementations of

-  `The WebSocket Protocol <https://tools.ietf.org/html/rfc6455>`__
-  `The Web Application Messaging Protocol (WAMP) <https://wamp-proto.org/>`__

for Python 3.7+ and running on `Twisted <https://twistedmatrix.com/>`__ and `asyncio <https://docs.python.org/3/library/asyncio.html>`__.

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 <https://crossbario.com/blog/post/websocket-why-what-can-i-use-it/>`__ and beyond, while `WAMP <https://wamp-proto.org/>`__ 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 <https://tools.ietf.org/html/rfc6455>`__. WAMP is a *routed* protocol, so you need a **WAMP Router** to connect your **Autobahn\|Python** based clients. We provide `Crossbar.io <https://crossbar.io>`__, but there are `other options <https://wamp-proto.org/implementations.html#routers>`__ as well.

.. note::

    **Autobahn\|Python** up to version v19.11.2 supported Python 2 and 3.4+,
    and up to version v20.7.1 supported Python 3.5+,
    and up to version v21.2.1 supported Python 3.6+.

Features
--------

-  framework for `WebSocket <https://tools.ietf.org/html/rfc6455>`__ and `WAMP <https://wamp-proto.org/>`__ clients and servers
-  runs on `CPython <https://python.org/>`__ and `PyPy <https://pypy.org/>`
-  runs under `Twisted <https://twistedmatrix.com/>`__ and `asyncio <https://docs.python.org/3/library/asyncio.html>`__ - implements WebSocket
   `RFC6455 <https://tools.ietf.org/html/rfc6455>`__ and Draft Hybi-10+
-  implements `WebSocket compression <https://tools.ietf.org/html/draft-ietf-hybi-permessage-compression>`__
-  implements `WAMP <https://wamp-proto.org/>`__, the Web Application Messaging Protocol
-  high-performance, fully asynchronous implementation
-  best-in-class standards conformance (100% strict passes with `Autobahn Testsuite <https://crossbar.io/autobahn#testsuite>`__: `Client <https://autobahn.ws/testsuite/reports/clients/index.html>`__ `Server <https://autobahn.ws/testsuite/reports/servers/index.html>`__)
-  message-, frame- and streaming-APIs for WebSocket
-  supports TLS (secure WebSocket) and proxies
-  Open-source (`MIT license <https://github.com/crossbario/autobahn-python/blob/master/LICENSE>`__)

-----

Show me some code
-----------------

To give you a first impression, here are two examples. We have lot more `in the repo <https://github.com/crossbario/autobahn-python/tree/master/examples>`__.

WebSocket Echo Server
~~~~~~~~~~~~~~~~~~~~~

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

.. code:: python

    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 <https://autobahn.readthedocs.io/en/latest/websocket/programming.html#running-a-server>`__.

WAMP Application Component
~~~~~~~~~~~~~~~~~~~~~~~~~~

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

#. **subscribe** to a topic
#. **publish** an event
#. **register** a procedure
#. **call** a procedure

.. code:: python

    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 <https://autobahn.readthedocs.io/en/latest/wamp/programming.html#running-components>`__ and a `WAMP Router <https://autobahn.readthedocs.io/en/latest/wamp/programming.html#running-a-wamp-router>`__.


Extensions
----------

Networking framework
~~~~~~~~~~~~~~~~~~~~

Autobahn runs on both Twisted and asyncio. To select the respective netoworking framework, install flavor:

* ``asyncio``: Install asyncio (when on Python 2, otherwise it's included in the standard library already) and asyncio support in Autobahn
* ``twisted``: Install Twisted and Twisted support in Autobahn

-----


WebSocket acceleration and compression
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

* ``accelerate``: Install WebSocket acceleration - *Only use on CPython - not on PyPy (which is faster natively)*
* ``compress``: Install (non-standard) WebSocket compressors **bzip2** and **snappy** (standard **deflate** based WebSocket compression is already included in the base install)

-----


Encryption and WAMP authentication
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Autobahn supports running over TLS (for WebSocket and all WAMP transports) as well as **WAMP-cryposign** authentication.

To install use this flavor:

* ``encryption``: Installs TLS and WAMP-cryptosign dependencies

Autobahn also supports **WAMP-SCRAM** authentication. To install:

* ``scram``: Installs WAMP-SCRAM dependencies

-----


XBR
~~~

Autobahn includes support for `XBR <https://xbr.network/>`__. To install use this flavor:

* ``xbr``:

To install:

.. code:: console

    pip install autobahn[xbr]

or (Twisted, with more bells an whistles)

.. code:: console

    pip install autobahn[twisted,encryption,serialization,xbr]

or (asyncio, with more bells an whistles)

.. code:: console

    pip install autobahn[asyncio,encryption,serialization,xbr]

-----


Native vector extensions (NVX)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

> This is NOT yet complete - ALPHA!

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

.. note:

    NVX lives in namespace `autobahn.nvx` and currently requires a x86-86 CPU with at least SSE2 and makes use of SSE4.1 if available. The code is written using vector instrinsics, should compile with both GCC and Clang,and interfaces with Python using CFFI, and hence runs fast on PyPy.

-----


WAMP Serializers
~~~~~~~~~~~~~~~~

* ``serialization``: To install additional WAMP serializers: CBOR, MessagePack, UBJSON and Flatbuffers

**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:

.. code:: console

    pip install autobahn[serializers]

or (development install)

.. code:: console

    pip install -e .[serializers]

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

.. code:: console

    AUTOBAHN_USE_UJSON=1

.. warning::

    Using ``ujson`` (on both CPython and PyPy) will break the ability of Autobahn
    to transport and translate binary application payloads in WAMP transparently.
    This ability depends on features of the regular JSON standard library module
    not available on ``ujson``.


.. |Version| image:: https://img.shields.io/pypi/v/autobahn.svg
   :target: https://pypi.python.org/pypi/autobahn

.. |CI Test Status| image:: https://github.com/crossbario/autobahn-python/workflows/main/badge.svg
   :target: https://github.com/crossbario/autobahn-python/actions?query=workflow%3Amain
   :alt: CI Test Status

.. |CI Deploy Status| image:: https://github.com/crossbario/autobahn-python/workflows/deploy/badge.svg
   :target: https://github.com/crossbario/autobahn-python/actions?query=workflow%3Adeploy
   :alt: CI Deploy Status

.. |CI Docker Status| image:: https://github.com/crossbario/autobahn-python/workflows/docker/badge.svg
   :target: https://github.com/crossbario/autobahn-python/actions?query=workflow%3Adocker
   :alt: CI Docker Status

.. |CI EXE Status| image:: https://github.com/crossbario/autobahn-python/workflows/pyinstaller/badge.svg
   :target: https://github.com/crossbario/autobahn-python/actions?query=workflow%3Apyinstaller
   :alt: CI EXE Status

.. |Docs| image:: https://img.shields.io/badge/docs-latest-brightgreen.svg?style=flat
   :target: https://autobahn.readthedocs.io/en/latest/

.. |Docker Images| image:: https://img.shields.io/badge/download-docker-blue.svg?style=flat
   :target: https://hub.docker.com/r/crossbario/autobahn-python/

.. |EXE Download| image:: https://img.shields.io/badge/download-exe-blue.svg?style=flat
   :target: https://download.crossbario.com/xbrnetwork/linux-amd64/xbrnetwork-latest

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/crossbario/autobahn-python",
    "name": "autobahn",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": "",
    "keywords": "autobahn crossbar websocket realtime rfc6455 wamp rpc pubsub twisted asyncio xbr data-markets blockchain ethereum",
    "author": "typedef int GmbH",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/92/ee/c3320c326919394ff597592549ff5d29d2f7bf12be9ddaa9017caff1a170/autobahn-23.6.2.tar.gz",
    "platform": "Any",
    "description": "Autobahn\\|Python\n================\n\nWebSocket & WAMP for Python on Twisted and asyncio.\n\n| |Version|  |CI Test Status|  |CI Deploy Status|  |CI Docker Status|  |CI EXE Status|  |Docs|  |Docker Images|  |EXE Download|\n\n--------------\n\n| **Quick Links**: `Source Code <https://github.com/crossbario/autobahn-python>`__ - `Documentation <https://autobahn.readthedocs.io/en/latest/>`__ - `WebSocket Examples <https://autobahn.readthedocs.io/en/latest/websocket/examples.html>`__ - `WAMP Examples <https://autobahn.readthedocs.io/en/latest/wamp/examples.html>`__\n| **Community**: `Forum <https://crossbar.discourse.group/>`__ - `StackOverflow <https://stackoverflow.com/questions/tagged/autobahn>`__ - `Twitter <https://twitter.com/autobahnws>`__ - `IRC #autobahn/chat.freenode.net <https://webchat.freenode.net/>`__\n| **Companion Projects**: `Autobahn|JS <https://github.com/crossbario/autobahn-js/>`__ - `Autobahn|Cpp <https://github.com/crossbario/autobahn-cpp>`__ - `Autobahn|Testsuite <https://github.com/crossbario/autobahn-testsuite>`__ - `Crossbar.io <https://crossbar.io>`__ - `WAMP <https://wamp-proto.org>`__\n\nIntroduction\n------------\n\n**Autobahn\\|Python** is a subproject of `Autobahn <https://crossbar.io/autobahn>`__ and provides open-source\nimplementations of\n\n-  `The WebSocket Protocol <https://tools.ietf.org/html/rfc6455>`__\n-  `The Web Application Messaging Protocol (WAMP) <https://wamp-proto.org/>`__\n\nfor Python 3.7+ and running on `Twisted <https://twistedmatrix.com/>`__ and `asyncio <https://docs.python.org/3/library/asyncio.html>`__.\n\nYou can use **Autobahn\\|Python** to create clients and servers in Python speaking just plain WebSocket or WAMP.\n\n**WebSocket** allows `bidirectional real-time messaging on the Web <https://crossbario.com/blog/post/websocket-why-what-can-i-use-it/>`__ and beyond, while `WAMP <https://wamp-proto.org/>`__ adds real-time application communication on top of WebSocket.\n\n**WAMP** provides asynchronous **Remote Procedure Calls** and **Publish & Subscribe** for applications in *one* protocol running over `WebSocket <https://tools.ietf.org/html/rfc6455>`__. WAMP is a *routed* protocol, so you need a **WAMP Router** to connect your **Autobahn\\|Python** based clients. We provide `Crossbar.io <https://crossbar.io>`__, but there are `other options <https://wamp-proto.org/implementations.html#routers>`__ as well.\n\n.. note::\n\n    **Autobahn\\|Python** up to version v19.11.2 supported Python 2 and 3.4+,\n    and up to version v20.7.1 supported Python 3.5+,\n    and up to version v21.2.1 supported Python 3.6+.\n\nFeatures\n--------\n\n-  framework for `WebSocket <https://tools.ietf.org/html/rfc6455>`__ and `WAMP <https://wamp-proto.org/>`__ clients and servers\n-  runs on `CPython <https://python.org/>`__ and `PyPy <https://pypy.org/>`\n-  runs under `Twisted <https://twistedmatrix.com/>`__ and `asyncio <https://docs.python.org/3/library/asyncio.html>`__ - implements WebSocket\n   `RFC6455 <https://tools.ietf.org/html/rfc6455>`__ and Draft Hybi-10+\n-  implements `WebSocket compression <https://tools.ietf.org/html/draft-ietf-hybi-permessage-compression>`__\n-  implements `WAMP <https://wamp-proto.org/>`__, the Web Application Messaging Protocol\n-  high-performance, fully asynchronous implementation\n-  best-in-class standards conformance (100% strict passes with `Autobahn Testsuite <https://crossbar.io/autobahn#testsuite>`__: `Client <https://autobahn.ws/testsuite/reports/clients/index.html>`__ `Server <https://autobahn.ws/testsuite/reports/servers/index.html>`__)\n-  message-, frame- and streaming-APIs for WebSocket\n-  supports TLS (secure WebSocket) and proxies\n-  Open-source (`MIT license <https://github.com/crossbario/autobahn-python/blob/master/LICENSE>`__)\n\n-----\n\nShow me some code\n-----------------\n\nTo give you a first impression, here are two examples. We have lot more `in the repo <https://github.com/crossbario/autobahn-python/tree/master/examples>`__.\n\nWebSocket Echo Server\n~~~~~~~~~~~~~~~~~~~~~\n\nHere is a simple WebSocket Echo Server that will echo back any WebSocket\nmessage received:\n\n.. code:: python\n\n    from autobahn.twisted.websocket import WebSocketServerProtocol\n    # or: from autobahn.asyncio.websocket import WebSocketServerProtocol\n\n    class MyServerProtocol(WebSocketServerProtocol):\n\n        def onConnect(self, request):\n            print(\"Client connecting: {}\".format(request.peer))\n\n        def onOpen(self):\n            print(\"WebSocket connection open.\")\n\n        def onMessage(self, payload, isBinary):\n            if isBinary:\n                print(\"Binary message received: {} bytes\".format(len(payload)))\n            else:\n                print(\"Text message received: {}\".format(payload.decode('utf8')))\n\n            # echo back message verbatim\n            self.sendMessage(payload, isBinary)\n\n        def onClose(self, wasClean, code, reason):\n            print(\"WebSocket connection closed: {}\".format(reason))\n\nTo actually run above server protocol, you need some lines of `boilerplate <https://autobahn.readthedocs.io/en/latest/websocket/programming.html#running-a-server>`__.\n\nWAMP Application Component\n~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nHere is a WAMP Application Component that performs all four types of\nactions that WAMP provides:\n\n#. **subscribe** to a topic\n#. **publish** an event\n#. **register** a procedure\n#. **call** a procedure\n\n.. code:: python\n\n    from autobahn.twisted.wamp import ApplicationSession\n    # or: from autobahn.asyncio.wamp import ApplicationSession\n\n    class MyComponent(ApplicationSession):\n\n        @inlineCallbacks\n        def onJoin(self, details):\n\n            # 1. subscribe to a topic so we receive events\n            def onevent(msg):\n                print(\"Got event: {}\".format(msg))\n\n            yield self.subscribe(onevent, 'com.myapp.hello')\n\n            # 2. publish an event to a topic\n            self.publish('com.myapp.hello', 'Hello, world!')\n\n            # 3. register a procedure for remote calling\n            def add2(x, y):\n                return x + y\n\n            self.register(add2, 'com.myapp.add2')\n\n            # 4. call a remote procedure\n            res = yield self.call('com.myapp.add2', 2, 3)\n            print(\"Got result: {}\".format(res))\n\nAbove code will work on Twisted and asyncio by changing a single line\n(the base class of ``MyComponent``). To actually run above application component, you need some lines of `boilerplate <https://autobahn.readthedocs.io/en/latest/wamp/programming.html#running-components>`__ and a `WAMP Router <https://autobahn.readthedocs.io/en/latest/wamp/programming.html#running-a-wamp-router>`__.\n\n\nExtensions\n----------\n\nNetworking framework\n~~~~~~~~~~~~~~~~~~~~\n\nAutobahn runs on both Twisted and asyncio. To select the respective netoworking framework, install flavor:\n\n* ``asyncio``: Install asyncio (when on Python 2, otherwise it's included in the standard library already) and asyncio support in Autobahn\n* ``twisted``: Install Twisted and Twisted support in Autobahn\n\n-----\n\n\nWebSocket acceleration and compression\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n* ``accelerate``: Install WebSocket acceleration - *Only use on CPython - not on PyPy (which is faster natively)*\n* ``compress``: Install (non-standard) WebSocket compressors **bzip2** and **snappy** (standard **deflate** based WebSocket compression is already included in the base install)\n\n-----\n\n\nEncryption and WAMP authentication\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nAutobahn supports running over TLS (for WebSocket and all WAMP transports) as well as **WAMP-cryposign** authentication.\n\nTo install use this flavor:\n\n* ``encryption``: Installs TLS and WAMP-cryptosign dependencies\n\nAutobahn also supports **WAMP-SCRAM** authentication. To install:\n\n* ``scram``: Installs WAMP-SCRAM dependencies\n\n-----\n\n\nXBR\n~~~\n\nAutobahn includes support for `XBR <https://xbr.network/>`__. To install use this flavor:\n\n* ``xbr``:\n\nTo install:\n\n.. code:: console\n\n    pip install autobahn[xbr]\n\nor (Twisted, with more bells an whistles)\n\n.. code:: console\n\n    pip install autobahn[twisted,encryption,serialization,xbr]\n\nor (asyncio, with more bells an whistles)\n\n.. code:: console\n\n    pip install autobahn[asyncio,encryption,serialization,xbr]\n\n-----\n\n\nNative vector extensions (NVX)\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n> This is NOT yet complete - ALPHA!\n\nAutobahn contains **NVX**, a network accelerator library that provides SIMD accelerated native vector code for WebSocket (XOR masking) and UTF-8 validation.\n\n.. note:\n\n    NVX lives in namespace `autobahn.nvx` and currently requires a x86-86 CPU with at least SSE2 and makes use of SSE4.1 if available. The code is written using vector instrinsics, should compile with both GCC and Clang,and interfaces with Python using CFFI, and hence runs fast on PyPy.\n\n-----\n\n\nWAMP Serializers\n~~~~~~~~~~~~~~~~\n\n* ``serialization``: To install additional WAMP serializers: CBOR, MessagePack, UBJSON and Flatbuffers\n\n**Above is for advanced uses. In general we recommend to use CBOR where you can,\nand JSON (from the standard library) otherwise.**\n\n-----\n\nTo install Autobahn with all available serializers:\n\n.. code:: console\n\n    pip install autobahn[serializers]\n\nor (development install)\n\n.. code:: console\n\n    pip install -e .[serializers]\n\nFurther, to speed up JSON on CPython using ``ujson``, set the environment variable:\n\n.. code:: console\n\n    AUTOBAHN_USE_UJSON=1\n\n.. warning::\n\n    Using ``ujson`` (on both CPython and PyPy) will break the ability of Autobahn\n    to transport and translate binary application payloads in WAMP transparently.\n    This ability depends on features of the regular JSON standard library module\n    not available on ``ujson``.\n\n\n.. |Version| image:: https://img.shields.io/pypi/v/autobahn.svg\n   :target: https://pypi.python.org/pypi/autobahn\n\n.. |CI Test Status| image:: https://github.com/crossbario/autobahn-python/workflows/main/badge.svg\n   :target: https://github.com/crossbario/autobahn-python/actions?query=workflow%3Amain\n   :alt: CI Test Status\n\n.. |CI Deploy Status| image:: https://github.com/crossbario/autobahn-python/workflows/deploy/badge.svg\n   :target: https://github.com/crossbario/autobahn-python/actions?query=workflow%3Adeploy\n   :alt: CI Deploy Status\n\n.. |CI Docker Status| image:: https://github.com/crossbario/autobahn-python/workflows/docker/badge.svg\n   :target: https://github.com/crossbario/autobahn-python/actions?query=workflow%3Adocker\n   :alt: CI Docker Status\n\n.. |CI EXE Status| image:: https://github.com/crossbario/autobahn-python/workflows/pyinstaller/badge.svg\n   :target: https://github.com/crossbario/autobahn-python/actions?query=workflow%3Apyinstaller\n   :alt: CI EXE Status\n\n.. |Docs| image:: https://img.shields.io/badge/docs-latest-brightgreen.svg?style=flat\n   :target: https://autobahn.readthedocs.io/en/latest/\n\n.. |Docker Images| image:: https://img.shields.io/badge/download-docker-blue.svg?style=flat\n   :target: https://hub.docker.com/r/crossbario/autobahn-python/\n\n.. |EXE Download| image:: https://img.shields.io/badge/download-exe-blue.svg?style=flat\n   :target: https://download.crossbario.com/xbrnetwork/linux-amd64/xbrnetwork-latest\n",
    "bugtrack_url": null,
    "license": "MIT License",
    "summary": "WebSocket client & server library, WAMP real-time framework",
    "version": "23.6.2",
    "project_urls": {
        "Homepage": "https://github.com/crossbario/autobahn-python",
        "Source": "https://github.com/crossbario/autobahn-python"
    },
    "split_keywords": [
        "autobahn",
        "crossbar",
        "websocket",
        "realtime",
        "rfc6455",
        "wamp",
        "rpc",
        "pubsub",
        "twisted",
        "asyncio",
        "xbr",
        "data-markets",
        "blockchain",
        "ethereum"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "92eec3320c326919394ff597592549ff5d29d2f7bf12be9ddaa9017caff1a170",
                "md5": "f29d3cebec06c81a87823a2776ffcc5c",
                "sha256": "ec9421c52a2103364d1ef0468036e6019ee84f71721e86b36fe19ad6966c1181"
            },
            "downloads": -1,
            "filename": "autobahn-23.6.2.tar.gz",
            "has_sig": false,
            "md5_digest": "f29d3cebec06c81a87823a2776ffcc5c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 480814,
            "upload_time": "2023-06-14T07:27:13",
            "upload_time_iso_8601": "2023-06-14T07:27:13.235881Z",
            "url": "https://files.pythonhosted.org/packages/92/ee/c3320c326919394ff597592549ff5d29d2f7bf12be9ddaa9017caff1a170/autobahn-23.6.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-06-14 07:27:13",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "crossbario",
    "github_project": "autobahn-python",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "tox": true,
    "lcname": "autobahn"
}
        
Elapsed time: 0.07841s