{ "info": { "author": "Crossbar.io Technologies GmbH", "author_email": "", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: No Input/Output (Daemon)", "Framework :: Twisted", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: Jython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Communications", "Topic :: Internet", "Topic :: Internet :: WWW/HTTP", "Topic :: Software Development :: Libraries", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Software Development :: Object Brokering", "Topic :: System :: Distributed Computing" ], "description": "Autobahn\\|Python\n================\n\nWebSocket & WAMP for Python on Twisted and asyncio.\n\n| |Version| |Build Status| |Coverage| |Docs| |Docker|\n\n--------------\n\n| **Quick Links**: `Source Code `__ - `Documentation `__ - `WebSocket Examples `__ - `WAMP Examples `__\n| **Community**: `Mailing list `__ - `StackOverflow `__ - `Twitter `__ - `IRC #autobahn/chat.freenode.net `__\n| **Companion Projects**: `Autobahn|JS `__ - `Autobahn|Cpp `__ - `Autobahn|Testsuite `__ - `Crossbar.io `__ - `WAMP `__\n\nIntroduction\n------------\n\n**Autobahn\\|Python** is a subproject of `Autobahn `__ and provides open-source\nimplementations of\n\n- `The WebSocket Protocol `__\n- `The Web Application Messaging Protocol (WAMP) `__\n\nfor Python 2 and 3, and running on `Twisted `__ and `asyncio `__.\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 `__ and beyond, while `WAMP `__ 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 `__. 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.\n\nFeatures\n--------\n\n- framework for `WebSocket `__ and `WAMP `__ clients and servers\n- compatible with Python 2.7 and 3.4 or later (including 3.7)\n- runs on `CPython `__, `PyPy `__ and `Jython `__\n- runs under `Twisted `__ and `asyncio `__ - implements WebSocket\n `RFC6455 `__ and Draft Hybi-10+\n- implements `WebSocket compression `__\n- implements `WAMP `__, the Web Application Messaging Protocol\n- high-performance, fully asynchronous implementation\n- best-in-class standards conformance (100% strict passes with `Autobahn Testsuite `__: `Client `__ `Server `__)\n- message-, frame- and streaming-APIs for WebSocket\n- supports TLS (secure WebSocket) and proxies\n- Open-source (`MIT 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 `__.\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 `__.\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 `__ and 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 `__. To install use this flavor:\n\n* ``xbr``:\n\n**Only supported on Python 3.5+.**\n\n.. note::\n\n Package 'web3' requires a different Python: 2.7.16 not in '>=3.5.3,<4'\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\nTo use ``cbor2``, an alternative, highly flexible and standards complicant CBOR\nimplementation, set the environment variable:\n\n.. code:: console\n\n AUTOBAHN_USE_CBOR2=1\n\n.. note::\n\n ``cbor2`` is not used by default, because it is significantly slower currently\n in our benchmarking for WAMP message serialization on both CPython and PyPy\n compared to ``cbor``.\n\n\n\n.. |Version| image:: https://img.shields.io/pypi/v/autobahn.svg\n :target: https://pypi.python.org/pypi/autobahn\n\n.. |Master Branch| image:: https://img.shields.io/badge/branch-master-orange.svg\n :target: https://travis-ci.org/crossbario/autobahn-python.svg?branch=master\n\n.. |Build Status| image:: https://travis-ci.org/crossbario/autobahn-python.svg?branch=master\n :target: https://travis-ci.org/crossbario/autobahn-python\n\n.. |Coverage| image:: https://img.shields.io/codecov/c/github/crossbario/autobahn-python/master.svg\n :target: https://codecov.io/github/crossbario/autobahn-python\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| image:: https://img.shields.io/badge/docker-ready-blue.svg?style=flat\n :target: https://hub.docker.com/r/crossbario/autobahn-python/\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://crossbar.io/autobahn", "keywords": "autobahn crossbar websocket realtime rfc6455 wamp rpc pubsub twisted asyncio xbr data-markets blockchain ethereum", "license": "MIT License", "maintainer": "", "maintainer_email": "", "name": "autobahn", "package_url": "https://pypi.org/project/autobahn/", "platform": "Any", "project_url": "https://pypi.org/project/autobahn/", "project_urls": { "Homepage": "http://crossbar.io/autobahn" }, "release_url": "https://pypi.org/project/autobahn/19.10.1/", "requires_dist": [ "six (>=1.11.0)", "txaio (>=18.8.1)", "cryptography (>=2.7)", "wsaccel (>=0.6.2) ; extra == 'accelerate'", "zope.interface (>=3.6.0) ; extra == 'all'", "Twisted (>=12.1.0) ; extra == 'all'", "wsaccel (>=0.6.2) ; extra == 'all'", "python-snappy (>=0.5) ; extra == 'all'", "lz4 (>=0.7.0) ; extra == 'all'", "msgpack (>=0.6.1) ; extra == 'all'", "ujson (>=1.35) ; extra == 'all'", "cbor2 (>=4.1.2) ; extra == 'all'", "cbor (>=1.0.0) ; extra == 'all'", "py-ubjson (>=0.8.4) ; extra == 'all'", "flatbuffers (>=1.10) ; extra == 'all'", "pyopenssl (>=16.2.0) ; extra == 'all'", "service-identity (>=16.0.0) ; extra == 'all'", "pynacl (>=1.0.1) ; extra == 'all'", "pytrie (>=0.2) ; extra == 'all'", "pyqrcode (>=1.1) ; extra == 'all'", "cffi (>=1.11.5) ; extra == 'all'", "argon2-cffi (>=18.1.0) ; extra == 'all'", "passlib (>=1.7.1) ; extra == 'all'", "cbor2 (>=4.1.1) ; extra == 'all'", "zlmdb (>=19.7.1) ; extra == 'all'", "twisted (>=18.9.0) ; extra == 'all'", "autobahn (>=18.11.2) ; extra == 'all'", "web3 (>=4.8.1) ; extra == 'all'", "py-eth-sig-utils (>=0.3.0) ; extra == 'all'", "py-ecc (>=1.7.1) ; extra == 'all'", "eth-abi (>=1.3.0) ; extra == 'all'", "python-snappy (>=0.5) ; extra == 'compress'", "lz4 (>=0.7.0) ; extra == 'compress'", "pep8-naming (>=0.3.3) ; extra == 'dev'", "flake8 (>=2.5.1) ; extra == 'dev'", "pyflakes (>=1.0.0) ; extra == 'dev'", "mock (>=1.3.0) ; extra == 'dev'", "pytest (<3.3.0,>=2.8.6) ; extra == 'dev'", "twine (>=1.6.5) ; extra == 'dev'", "sphinx (>=1.2.3) ; extra == 'dev'", "pyenchant (>=1.6.6) ; extra == 'dev'", "sphinxcontrib-spelling (>=2.1.2) ; extra == 'dev'", "sphinx-rtd-theme (>=0.1.9) ; extra == 'dev'", "awscli ; extra == 'dev'", "qualname ; extra == 'dev'", "passlib ; extra == 'dev'", "wheel ; extra == 'dev'", "pytest-asyncio (<0.6) ; extra == 'dev'", "pytest-aiohttp ; extra == 'dev'", "pyopenssl (>=16.2.0) ; extra == 'encryption'", "service-identity (>=16.0.0) ; extra == 'encryption'", "pynacl (>=1.0.1) ; extra == 'encryption'", "pytrie (>=0.2) ; extra == 'encryption'", "pyqrcode (>=1.1) ; extra == 'encryption'", "cffi (>=1.11.5) ; extra == 'nvx'", "cffi (>=1.11.5) ; extra == 'scram'", "argon2-cffi (>=18.1.0) ; extra == 'scram'", "passlib (>=1.7.1) ; extra == 'scram'", "msgpack (>=0.6.1) ; extra == 'serialization'", "ujson (>=1.35) ; extra == 'serialization'", "cbor2 (>=4.1.2) ; extra == 'serialization'", "cbor (>=1.0.0) ; extra == 'serialization'", "py-ubjson (>=0.8.4) ; extra == 'serialization'", "flatbuffers (>=1.10) ; extra == 'serialization'", "zope.interface (>=3.6.0) ; extra == 'twisted'", "Twisted (>=12.1.0) ; extra == 'twisted'", "cbor2 (>=4.1.1) ; extra == 'xbr'", "zlmdb (>=19.7.1) ; extra == 'xbr'", "twisted (>=18.9.0) ; extra == 'xbr'", "autobahn (>=18.11.2) ; extra == 'xbr'", "web3 (>=4.8.1) ; extra == 'xbr'", "py-eth-sig-utils (>=0.3.0) ; extra == 'xbr'", "py-ecc (>=1.7.1) ; extra == 'xbr'", "eth-abi (>=1.3.0) ; extra == 'xbr'" ], "requires_python": "", "summary": "WebSocket client & server library, WAMP real-time framework", "version": "19.10.1" }, "last_serial": 5906767, "releases": { "0.10.0": [ { "comment_text": "", "digests": { "md5": "6958bb95230ece5e11158e1362b1fe1c", "sha256": "e82f5e3ecbdf6f5cc6a1d5072d79df01bb0c2b3b79107550632e3f7418c97a32" }, "downloads": -1, "filename": "autobahn-0.10.0.tar.gz", "has_sig": false, "md5_digest": "6958bb95230ece5e11158e1362b1fe1c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 135193, "upload_time": "2015-02-19T18:26:31", "url": "https://files.pythonhosted.org/packages/84/c1/5b3f346b6c7138b7eeacba08cababaeecd6035b224ea32770478393151ad/autobahn-0.10.0.tar.gz" } ], "0.10.1": [ { "comment_text": "", "digests": { "md5": "c51527a6693396e4e705d064eb57353f", "sha256": "99e65ccbc22aa3bd8a7ae0ac1ea56c80236f03cce65490ae6d25f65787013289" }, "downloads": -1, "filename": "autobahn-0.10.1.tar.gz", "has_sig": false, "md5_digest": "c51527a6693396e4e705d064eb57353f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 135696, "upload_time": "2015-03-01T18:27:56", "url": "https://files.pythonhosted.org/packages/f0/44/51932237559b032d737c012a94e30c1475b02c6396adedd9693d9a70932e/autobahn-0.10.1.tar.gz" } ], "0.10.2": [ { "comment_text": "", "digests": { "md5": "516fce82b3b4f70e1ee3545f3546e8e6", "sha256": "379dfa5ab9ae9f0b07d628ca8b43f8cbf352a21bb671befd1ba9136ee1550d2c" }, "downloads": -1, "filename": "autobahn-0.10.2.tar.gz", "has_sig": false, "md5_digest": "516fce82b3b4f70e1ee3545f3546e8e6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 142682, "upload_time": "2015-03-19T21:47:01", "url": "https://files.pythonhosted.org/packages/72/1d/ad29b1cb06bc56854c38a42d907aa5c3de9bfcf078ff870c8ea869024dca/autobahn-0.10.2.tar.gz" } ], "0.10.3": [ { "comment_text": "", "digests": { "md5": "185c52e8a3afb5350bcd8e152b6229d8", "sha256": "0d047fe42694d70394ab05ca621ce519a5bb93c25a24d3b3e8f78f88ee6d3dda" }, "downloads": -1, "filename": "autobahn-0.10.3.tar.gz", "has_sig": false, "md5_digest": "185c52e8a3afb5350bcd8e152b6229d8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 147755, "upload_time": "2015-04-14T13:23:28", "url": "https://files.pythonhosted.org/packages/ea/f6/7788ae4ad8a7d6c1e6cf83b73d20268bcf63127ea85a36bed3c08a2f151e/autobahn-0.10.3.tar.gz" } ], "0.10.4": [ { "comment_text": "", "digests": { "md5": "4ae22413ee9ba8f6692e80e171b68777", "sha256": "3dd7a7793cead942cb0c06bef5a9f69e64edc174e47fb822702eafd41085933d" }, "downloads": -1, "filename": "autobahn-0.10.4.tar.gz", "has_sig": false, "md5_digest": "4ae22413ee9ba8f6692e80e171b68777", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 148147, "upload_time": "2015-05-08T18:22:29", "url": "https://files.pythonhosted.org/packages/ae/31/a77887511c21418cb704abb612bdb04c2e14fd629fecaf358337d336d546/autobahn-0.10.4.tar.gz" } ], "0.10.5": [ { "comment_text": "", "digests": { "md5": "75cbbead47bdac8ee606ca3ce9ee742e", "sha256": "28c13950ddaffdb2038631e238158c7b0dec05a2bdf27c8ee9621c77a0a11214" }, "downloads": -1, "filename": "autobahn-0.10.5.tar.gz", "has_sig": false, "md5_digest": "75cbbead47bdac8ee606ca3ce9ee742e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 152300, "upload_time": "2015-08-06T14:44:02", "url": "https://files.pythonhosted.org/packages/d1/75/b57c83ef8753d01925ceb0cbb8517aec10468384ad9e85f9aa1a8d332d4b/autobahn-0.10.5.tar.gz" } ], "0.10.5.post2": [ { "comment_text": "", "digests": { "md5": "1e236b887e78c2bf779933c90cf7f06a", "sha256": "1bab6dac601a666763ec4b1e1c789920d331e8a404943a3d03e6701ff035faa1" }, "downloads": -1, "filename": "autobahn-0.10.5.post2.tar.gz", "has_sig": false, "md5_digest": "1e236b887e78c2bf779933c90cf7f06a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 151764, "upload_time": "2015-08-09T15:13:16", "url": "https://files.pythonhosted.org/packages/6c/b1/e3d55aef5d0328eb9d66b4116b05b1aa80c2aef710333a7d551a443e00a8/autobahn-0.10.5.post2.tar.gz" } ], "0.10.6": [ { "comment_text": "", "digests": { "md5": "987a18783dabeeb30c737b278e11d9df", "sha256": "354807b1df92a4200ca09ff2edc15f2d7ce4011fca99d9c3bbb3e71fa18dab86" }, "downloads": -1, "filename": "autobahn-0.10.6.tar.gz", "has_sig": false, "md5_digest": "987a18783dabeeb30c737b278e11d9df", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 156865, "upload_time": "2015-09-05T01:30:03", "url": "https://files.pythonhosted.org/packages/cd/3f/e28cdc360084f031ecd9268eff8c943fc155171799c7e9ebb3ef51f779ce/autobahn-0.10.6.tar.gz" } ], "0.10.7": [ { "comment_text": "", "digests": { "md5": "43affb94dc2bcdae9d5d9263211972f1", "sha256": "c515f6c9e9ed8e2a20769fb4757d187444d01a7f298ae61347fcb8c99844b150" }, "downloads": -1, "filename": "autobahn-0.10.7.tar.gz", "has_sig": false, "md5_digest": "43affb94dc2bcdae9d5d9263211972f1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 156429, "upload_time": "2015-09-06T09:25:32", "url": "https://files.pythonhosted.org/packages/7b/82/81a7ce937515c0822628d53eb3c7db8a85882a14f681f09c235f2f29e789/autobahn-0.10.7.tar.gz" } ], "0.10.8": [ { "comment_text": "", "digests": { "md5": "d0974e68c93df402a603227cffa061a1", "sha256": "94fb4b829367c86b716624e2c4b4c21d8113a275d1f7d99749f0aa0f01a3eed6" }, "downloads": -1, "filename": "autobahn-0.10.8.tar.gz", "has_sig": false, "md5_digest": "d0974e68c93df402a603227cffa061a1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 158466, "upload_time": "2015-09-13T19:22:45", "url": "https://files.pythonhosted.org/packages/c5/94/ef891ccbf74172bd7c8ceb36831e5afdb982680c91068ee9d8b6515b9921/autobahn-0.10.8.tar.gz" } ], "0.10.9": [ { "comment_text": "", "digests": { "md5": "fa90fa91f9c0e711ca6e87c7e9d835b7", "sha256": "3fecc1e2a26a0421128ddcfb4e577f0bc669dd65d0e0fdad1c773965cbcef75a" }, "downloads": -1, "filename": "autobahn-0.10.9.tar.gz", "has_sig": false, "md5_digest": "fa90fa91f9c0e711ca6e87c7e9d835b7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 158400, "upload_time": "2015-09-15T08:15:10", "url": "https://files.pythonhosted.org/packages/31/f1/1b2acdee2c082257e4d98bf26bfbd6398c7a2faa74e5feb9225e491dedac/autobahn-0.10.9.tar.gz" } ], "0.11.0": [ { "comment_text": "", "digests": { "md5": "13b2d91917b1e272359ed323236565c1", "sha256": "e7aea216e2a3bb41a4fec235399ece8bfbc0be4ef9567e1ed6927db7fa35f851" }, "downloads": -1, "filename": "autobahn-0.11.0.tar.gz", "has_sig": false, "md5_digest": "13b2d91917b1e272359ed323236565c1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 149680, "upload_time": "2015-12-09T22:48:07", "url": "https://files.pythonhosted.org/packages/ef/f4/e5a25ab453409a75a0feabad8295f0ead7e75d7367ecc57e0470aaf161fc/autobahn-0.11.0.tar.gz" } ], "0.12.0": [], "0.12.1": [ { "comment_text": "", "digests": { "md5": "b4b5445050749c1033b9b58f694f0c64", "sha256": "664223879e159c88221f42d8d1ac6b8c4268d8b9316d8ab69a02761c5744cd79" }, "downloads": -1, "filename": "autobahn-0.12.1.tar.gz", "has_sig": false, "md5_digest": "b4b5445050749c1033b9b58f694f0c64", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 163311, "upload_time": "2016-01-30T14:24:41", "url": "https://files.pythonhosted.org/packages/a5/62/1c9fb7765de6b4652442d8196c9be03455c3f62a2a1d93636102ccb8f4e9/autobahn-0.12.1.tar.gz" } ], "0.13.0": [ { "comment_text": "", "digests": { "md5": "6e7206b04455db945dc1e13a5c0e2839", "sha256": "ff549da68bf4065397a1a68d70b4c70067a1df2d695273ae27a5e66039df2fba" }, "downloads": -1, "filename": "autobahn-0.13.0.tar.gz", "has_sig": false, "md5_digest": "6e7206b04455db945dc1e13a5c0e2839", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 169225, "upload_time": "2016-03-15T11:08:46", "url": "https://files.pythonhosted.org/packages/e5/6f/bb136625581cef64223f507ac8c8d8999f8cc84e3899b80d8d8f91c32d2c/autobahn-0.13.0.tar.gz" } ], "0.13.1": [ { "comment_text": "", "digests": { "md5": "3f53f6c8a86799c576cc0cc2047d6135", "sha256": "e1f742cabdfcab3e39d482c8fd51ed800e1f544fe2bf7a2cb219511a12104949" }, "downloads": -1, "filename": "autobahn-0.13.1.tar.gz", "has_sig": false, "md5_digest": "3f53f6c8a86799c576cc0cc2047d6135", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 168386, "upload_time": "2016-04-09T12:56:41", "url": "https://files.pythonhosted.org/packages/27/c7/9861ce6fc37ddf1d9dd3508534166a66f91bd710949b358652475ae870e2/autobahn-0.13.1.tar.gz" } ], "0.14.0": [ { "comment_text": "", "digests": { "md5": "e4145f4df02d155ba3f260b15b66c53f", "sha256": "dca7707267b41c1a8bf86a8ab11ee8d1d95e0c7e7530860fe8cb79b444914485" }, "downloads": -1, "filename": "autobahn-0.14.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e4145f4df02d155ba3f260b15b66c53f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 229778, "upload_time": "2016-05-01T14:26:36", "url": "https://files.pythonhosted.org/packages/c1/11/ce7ef57c4ffbc748f7b9c7db89902613a9cf5fb104d780854f803e2a8d97/autobahn-0.14.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d0a71655588094fdf9c72074fd8073f8", "sha256": "df72f4bf4e918489be338ca7b6eb40cb3926064f1604394f057b843ad89077b2" }, "downloads": -1, "filename": "autobahn-0.14.0.tar.gz", "has_sig": false, "md5_digest": "d0a71655588094fdf9c72074fd8073f8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 169460, "upload_time": "2016-05-01T14:26:43", "url": "https://files.pythonhosted.org/packages/63/d2/3280efcb82f6036387b7ea5f81b3071a51a33908efcbba1e211697481f00/autobahn-0.14.0.tar.gz" } ], "0.14.1": [ { "comment_text": "", "digests": { "md5": "d52cd6db3097a2e955758369f31794ee", "sha256": "4e60a59e3497161ce94e6559affb49d1073d70948aef38a3ae6b1b6294b00138" }, "downloads": -1, "filename": "autobahn-0.14.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d52cd6db3097a2e955758369f31794ee", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 229807, "upload_time": "2016-05-26T19:56:39", "url": "https://files.pythonhosted.org/packages/5e/ed/992d09251ae44e82b1c7cc47305b831ef88bb13dc95d436a8670a39f64b3/autobahn-0.14.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "576b63ce7fa7846f64650263842b712b", "sha256": "c1695e139e36daeaad9cb788dd3f9b907a3fd83b67884424e59b3e07032956e0" }, "downloads": -1, "filename": "autobahn-0.14.1.tar.gz", "has_sig": false, "md5_digest": "576b63ce7fa7846f64650263842b712b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 170711, "upload_time": "2016-05-26T19:56:46", "url": "https://files.pythonhosted.org/packages/e3/37/1297551d3066ec9b013dd3a1a7e2cca85900d3fe95194779370e8e7a7af7/autobahn-0.14.1.tar.gz" } ], "0.15.0": [ { "comment_text": "", "digests": { "md5": "53888cabca52ad0babe7da4d561825a2", "sha256": "ae5ec087620e7e6b5d564373310f3204b08ab9d7a160fdf0c9f9a82362c3a3ba" }, "downloads": -1, "filename": "autobahn-0.15.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "53888cabca52ad0babe7da4d561825a2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 245296, "upload_time": "2016-07-19T13:28:34", "url": "https://files.pythonhosted.org/packages/ae/4d/5a73d3c422c1ad2fc25e94d23e8fd7b2c3d70b13d53f09f0261c913b79e4/autobahn-0.15.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c45a37a21f2818eb4ca210f3d374aadf", "sha256": "3b9dc51b86341f171ee10b59c608b520f6b9c10840ca69b7589580660294b88a" }, "downloads": -1, "filename": "autobahn-0.15.0.tar.gz", "has_sig": false, "md5_digest": "c45a37a21f2818eb4ca210f3d374aadf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 180118, "upload_time": "2016-07-19T13:28:39", "url": "https://files.pythonhosted.org/packages/80/40/bab2da78a1805a5039ad9fad2aec6bce8bdaf36e25bd32cd8a547a28c178/autobahn-0.15.0.tar.gz" } ], "0.16.0": [ { "comment_text": "", "digests": { "md5": "0b1d7eb6c5f3900255a7a83676c15e20", "sha256": "6c9eb70a36ffbc831a1fe76e43f99f5fd26aebfa7c5af2d705c587c4ef20c8f0" }, "downloads": -1, "filename": "autobahn-0.16.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0b1d7eb6c5f3900255a7a83676c15e20", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 250169, "upload_time": "2016-08-14T16:03:51", "url": "https://files.pythonhosted.org/packages/25/f9/89a8e9e9717e7eb5841d5433c4c2764e9a98dfdb610b5ebdd3080a11b604/autobahn-0.16.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9850702d0078c5a4aa17170afe2f233c", "sha256": "a1dcb4315a0914da56ec484659816de72dfad229be4ac19fa61bbc0111ada884" }, "downloads": -1, "filename": "autobahn-0.16.0.tar.gz", "has_sig": false, "md5_digest": "9850702d0078c5a4aa17170afe2f233c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 185053, "upload_time": "2016-08-14T16:03:55", "url": "https://files.pythonhosted.org/packages/68/37/2523309412f0fb93a7784c65e5c5639b4b5d7a84f91374ad6c3c2d5af60b/autobahn-0.16.0.tar.gz" } ], "0.16.1": [ { "comment_text": "", "digests": { "md5": "e36b3584f94586f0e58a9e71feba84f3", "sha256": "f6b38538aa2ff911e1cc687be6ba183465974c5bdbfdd00437bd8300dcb838d5" }, "downloads": -1, "filename": "autobahn-0.16.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e36b3584f94586f0e58a9e71feba84f3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 251633, "upload_time": "2016-11-07T19:45:00", "url": "https://files.pythonhosted.org/packages/44/2e/4e3618cab8e70a59370ca3db308e4b533edfe5fce2511784b68423d68517/autobahn-0.16.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f43317b5e49e12e818ce9019893a2a88", "sha256": "d4139862620bab15f1a9711e83430d0b20484d713bc0ced51185a921b9990375" }, "downloads": -1, "filename": "autobahn-0.16.1.tar.gz", "has_sig": false, "md5_digest": "f43317b5e49e12e818ce9019893a2a88", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 184238, "upload_time": "2016-11-07T19:45:05", "url": "https://files.pythonhosted.org/packages/9e/a3/9d742d4b3ea49e6b14cbc8e7fc5e29b25d725a56f98ca13f0c930a176ded/autobahn-0.16.1.tar.gz" } ], "0.17.0": [ { "comment_text": "", "digests": { "md5": "b11cb348da479049f0b9744407b0ae87", "sha256": "9fefc881434803a18183e75018931c22fb6760a8430067bf68cfaf8a3fc3972d" }, "downloads": -1, "filename": "autobahn-0.17.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b11cb348da479049f0b9744407b0ae87", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 253923, "upload_time": "2016-11-30T15:06:22", "url": "https://files.pythonhosted.org/packages/88/a5/2815b197a44851dab6611045047b9aad1827276a8b1c197449e8a43b314c/autobahn-0.17.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3b862e5e95eca34f804c2516c300f517", "sha256": "0f43d58945fc3f73263b85158f8eaa80c24beef3c3fb9c8d1c8395b5c59e1a44" }, "downloads": -1, "filename": "autobahn-0.17.0.tar.gz", "has_sig": false, "md5_digest": "3b862e5e95eca34f804c2516c300f517", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 186588, "upload_time": "2016-11-30T15:06:26", "url": "https://files.pythonhosted.org/packages/04/97/db28c2a0b531730050ac8d2b9f11f501f5d9c54e7ca2a416c9cd649bccbe/autobahn-0.17.0.tar.gz" } ], "0.17.1": [ { "comment_text": "", "digests": { "md5": "e5f586c2a63ab649014322bce8c95bcd", "sha256": "68b368bdc7f65c3f3f90749b749628a12bf9679b724e5a9fa33cec494f96ac5c" }, "downloads": -1, "filename": "autobahn-0.17.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e5f586c2a63ab649014322bce8c95bcd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 256439, "upload_time": "2016-12-29T15:10:24", "url": "https://files.pythonhosted.org/packages/d8/a1/c97c15c42451f216f4ae52e4ce88e9075b0bc2cdaa1f89d9a5105ddaca04/autobahn-0.17.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f6b3c2684b873ae29111385b695b28fb", "sha256": "4b8667375161f9a3516b71d7fd47aa31ba100bb822d1a235baaf9185ea252959" }, "downloads": -1, "filename": "autobahn-0.17.1.tar.gz", "has_sig": false, "md5_digest": "f6b3c2684b873ae29111385b695b28fb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 189827, "upload_time": "2016-12-29T15:10:27", "url": "https://files.pythonhosted.org/packages/28/36/c146415f70f62ae678c4b6dae64872eb7d55661dbb8830a5fa594143478c/autobahn-0.17.1.tar.gz" } ], "0.17.2": [ { "comment_text": "", "digests": { "md5": "ac3d7a3d11a877ef0c3f74f7f730e1d9", "sha256": "ccdd617129967ad7f9bdf2334685fc8121d414a9bdb3fdd5650481456bf8a0f4" }, "downloads": -1, "filename": "autobahn-0.17.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ac3d7a3d11a877ef0c3f74f7f730e1d9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 258027, "upload_time": "2017-02-25T12:21:01", "url": "https://files.pythonhosted.org/packages/92/8c/5bd1890d8aa23f1a175f98b69120b1ccb548af8da6a78aac73cc89a5c3bd/autobahn-0.17.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f3632cfbc3766c32a20d3293c62187e1", "sha256": "2120e91a0cf0338abc5105ac343c6c3d45e94f68385947bf3a75acae9025e4e6" }, "downloads": -1, "filename": "autobahn-0.17.2.tar.gz", "has_sig": false, "md5_digest": "f3632cfbc3766c32a20d3293c62187e1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 192027, "upload_time": "2017-02-25T12:21:05", "url": "https://files.pythonhosted.org/packages/1b/c9/b4c8fa9aa92d5a5ea6786b173b1daf5ae57682aeed059987a74637d6e0fe/autobahn-0.17.2.tar.gz" } ], "0.18.0": [ { "comment_text": "", "digests": { "md5": "d308eeb79af95d58a27b767216927ab3", "sha256": "16786a0cde4ebee3e4106c358dc76129d946f20bd04827eee130da8afea0289e" }, "downloads": -1, "filename": "autobahn-0.18.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d308eeb79af95d58a27b767216927ab3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 260604, "upload_time": "2017-03-26T15:28:56", "url": "https://files.pythonhosted.org/packages/66/21/2d5a340e1c202c43e468c6dd1b4b1f615824e715890e7685fd977ab0354b/autobahn-0.18.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5bed3787569ab6b31b827f57c480f2ea", "sha256": "848b53e6a907426a18122923d9efeb10659940192c98be222931bdc8e99129e4" }, "downloads": -1, "filename": "autobahn-0.18.0.tar.gz", "has_sig": false, "md5_digest": "5bed3787569ab6b31b827f57c480f2ea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 194569, "upload_time": "2017-03-26T15:29:00", "url": "https://files.pythonhosted.org/packages/34/1a/cc529fd3f7e78ecc729d3038689260029fcfbd8f39431a08e333411bc9ee/autobahn-0.18.0.tar.gz" } ], "0.18.1": [ { "comment_text": "", "digests": { "md5": "b179c931098ef52e55f84e63d8137716", "sha256": "eb20745a70b3087f38d916f80b58ef8ff3f09ac1e89f6b6ceb731b2ab2d6a09e" }, "downloads": -1, "filename": "autobahn-0.18.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b179c931098ef52e55f84e63d8137716", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 263077, "upload_time": "2017-03-28T18:07:26", "url": "https://files.pythonhosted.org/packages/49/2d/36749128ef076381e879dd93c13bfeee90888b2b642e20cbf8ca4dcfc0c1/autobahn-0.18.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b53539eb83b99c0b4a6357909991e5f7", "sha256": "8e87cbf9e1284fd0aad191d716552662242b446f8e81d9bc2c407f8ac8cbb737" }, "downloads": -1, "filename": "autobahn-0.18.1.tar.gz", "has_sig": false, "md5_digest": "b53539eb83b99c0b4a6357909991e5f7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 197088, "upload_time": "2017-03-28T18:07:30", "url": "https://files.pythonhosted.org/packages/c1/2c/bc117ed7b9add78307305a75eef35c7b4b27ae23bb80c571ec789b0ca247/autobahn-0.18.1.tar.gz" } ], "0.18.2": [ { "comment_text": "", "digests": { "md5": "3dc0b5423b9eec0c03a5744a71bbcaed", "sha256": "71c92fa92fc106acc9b03160a7b59aa61ea3bac467a10b31da9bab85cc7a96ce" }, "downloads": -1, "filename": "autobahn-0.18.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3dc0b5423b9eec0c03a5744a71bbcaed", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 269454, "upload_time": "2017-04-15T16:12:37", "url": "https://files.pythonhosted.org/packages/cc/da/3f3deb583d9804c9f2597d3af31bdf493167a7a16b6987ba0d4987f839f8/autobahn-0.18.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "48cc34f14022a13cf2915466179c7bb7", "sha256": "24f8c3c1deb771601cc730cec002024b7ad567adc96e516d992a5b4c6f3897aa" }, "downloads": -1, "filename": "autobahn-0.18.2.tar.gz", "has_sig": false, "md5_digest": "48cc34f14022a13cf2915466179c7bb7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 204165, "upload_time": "2017-04-15T16:12:40", "url": "https://files.pythonhosted.org/packages/28/57/d300625e568a1d7c657f4b9520fe192130023432a5d632fbac0dcb236390/autobahn-0.18.2.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "a16ccad15a8ecf6698b6e719f10f64fc", "sha256": "a3fc0b0d4c771e666ca7944721d07bab60bb4db349c4a1b12b3c62347a4c8d99" }, "downloads": -1, "filename": "autobahn-0.3.1-py2.6.egg", "has_sig": false, "md5_digest": "a16ccad15a8ecf6698b6e719f10f64fc", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 231998, "upload_time": "2011-08-14T13:14:57", "url": "https://files.pythonhosted.org/packages/4e/f8/dff8b91b2cd65be7c932402eed2dcc514b5f469268de1fe1229c65659499/autobahn-0.3.1-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "52cb982246482ab374530dc3d695b63b", "sha256": "28a0a4ea09a6ae1d4ffb6cd11f8d0a17e4ad6559926e79a50e3761a9a495c390" }, "downloads": -1, "filename": "autobahn-0.3.1.win32.exe", "has_sig": false, "md5_digest": "52cb982246482ab374530dc3d695b63b", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 316337, "upload_time": "2011-08-14T13:15:13", "url": "https://files.pythonhosted.org/packages/6c/41/d9be72d858ca65b618714d8e96133601bf1ef1ed2b1a702c15d7f28fc15e/autobahn-0.3.1.win32.exe" }, { "comment_text": "built for Windows-7", "digests": { "md5": "20d2532ddad3b9d66f016223b3c8f65b", "sha256": "305f376ee04e02a1c225f9b9c1ba1117443d159e89391ca9a3d3f6fc2cf60aa3" }, "downloads": -1, "filename": "autobahn-0.3.1.win32.zip", "has_sig": false, "md5_digest": "20d2532ddad3b9d66f016223b3c8f65b", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 224308, "upload_time": "2011-08-15T19:47:44", "url": "https://files.pythonhosted.org/packages/31/59/b9be3da5edfe903311e3d00cdedbe35f1cad12c090184566cbc9a7515e9e/autobahn-0.3.1.win32.zip" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "8ece067eb38802d007c423a1bf40c1fc", "sha256": "ca31431e88e82cddbf187af2a43e8beb232991f06fb04f068206394e10926752" }, "downloads": -1, "filename": "autobahn-0.3.2-py2.7.egg", "has_sig": false, "md5_digest": "8ece067eb38802d007c423a1bf40c1fc", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 213361, "upload_time": "2011-08-17T16:46:53", "url": "https://files.pythonhosted.org/packages/d3/1e/713f60f13b2f059caea43e4bbfc31e766882f660ce53b668622c7dbb51af/autobahn-0.3.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "e035a331609881e78b73a5a3e1c7fdee", "sha256": "097cc0be6abb60e90dca02a3b35e5a37badbee107c54e768242801a24c4cd582" }, "downloads": -1, "filename": "autobahn-0.3.2.win32.exe", "has_sig": false, "md5_digest": "e035a331609881e78b73a5a3e1c7fdee", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 307909, "upload_time": "2011-08-17T16:47:03", "url": "https://files.pythonhosted.org/packages/e7/f3/9ecb646a240fba4caba02bd9168d83aaa1fdcfd6057f6d88028f6c7a5ea8/autobahn-0.3.2.win32.exe" }, { "comment_text": "", "digests": { "md5": "7eaafd1f832884893d0554d9159cd1ce", "sha256": "76b2121ced038e34883b17912b52f5978f849646fe76b32f7af1b0ce50353ca2" }, "downloads": -1, "filename": "autobahn-0.3.2.zip", "has_sig": false, "md5_digest": "7eaafd1f832884893d0554d9159cd1ce", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 114813, "upload_time": "2011-08-17T16:48:17", "url": "https://files.pythonhosted.org/packages/be/2f/22f3b701db3c5da0ee03917cd26edbf900ca2228405d119e598f35997cb4/autobahn-0.3.2.zip" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "50de2287efdbaaae19442beadda68738", "sha256": "95dcb56fa4f9a2d345640a06831e89d014d04e89d371f8575089b8eefca56c3b" }, "downloads": -1, "filename": "autobahn-0.4.0-py2.7.egg", "has_sig": false, "md5_digest": "50de2287efdbaaae19442beadda68738", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 227514, "upload_time": "2011-08-28T19:01:44", "url": "https://files.pythonhosted.org/packages/81/bd/29a149cd4506b5597ec589fe0f5520e5e21cdfaf76a80d0d51f25e8ef388/autobahn-0.4.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "3eb197ed4111f892b957b7f83c26756f", "sha256": "54bd1e1c0b591dce670d31705a311947cc4a81d86d6af28bbfdba9ef3fb481a1" }, "downloads": -1, "filename": "autobahn-0.4.0.win32.exe", "has_sig": false, "md5_digest": "3eb197ed4111f892b957b7f83c26756f", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 314238, "upload_time": "2011-08-28T19:02:05", "url": "https://files.pythonhosted.org/packages/81/90/d4a16aa742bc6adc3d236068d879cb70f0f3c8e8e1a52fdbabc58256fe83/autobahn-0.4.0.win32.exe" }, { "comment_text": "", "digests": { "md5": "cecea2dc77512ab37e75ca1a9518ee31", "sha256": "a05e441e231f10f1a1ba9f25916a97533b7b26ccf439569cdbe3ec27557f94b0" }, "downloads": -1, "filename": "autobahn-0.4.0.zip", "has_sig": false, "md5_digest": "cecea2dc77512ab37e75ca1a9518ee31", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 119872, "upload_time": "2011-08-28T19:02:27", "url": "https://files.pythonhosted.org/packages/cc/38/a039379f99c45d70561cc182771981a049ef5e602b43a1aee08e245330a6/autobahn-0.4.0.zip" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "a19fd288ffe0a8376dcc3f5061d7d6c6", "sha256": "97f1e0827b22013b10c7e75712a6d473f8f3020f2845117211e5d1382a9b4037" }, "downloads": -1, "filename": "autobahn-0.4.1-py2.7.egg", "has_sig": false, "md5_digest": "a19fd288ffe0a8376dcc3f5061d7d6c6", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 227492, "upload_time": "2011-08-30T14:34:56", "url": "https://files.pythonhosted.org/packages/5c/0a/74a35ab9d61911aed6fcb789b3bf21c5891360ec36dbb58a93a85545d112/autobahn-0.4.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "1d177f3279b2dbd2478682ad0744f169", "sha256": "290280949266b6b127548f8556ffcfb51272c69d615afd762a818190836a9af8" }, "downloads": -1, "filename": "autobahn-0.4.1.win32.exe", "has_sig": false, "md5_digest": "1d177f3279b2dbd2478682ad0744f169", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 314231, "upload_time": "2011-08-30T14:35:07", "url": "https://files.pythonhosted.org/packages/6a/ab/25965f35436621a66f65062f5a9b0862e34e4243954cff5fdc2ad20c648f/autobahn-0.4.1.win32.exe" }, { "comment_text": "", "digests": { "md5": "d96c11ab9d7053026eefb62712f05c26", "sha256": "1d445c6b2dd492c7c0a5de26ff8ebc783e8c1e6260fe0466e6b00f119f1dcb41" }, "downloads": -1, "filename": "autobahn-0.4.1.zip", "has_sig": false, "md5_digest": "d96c11ab9d7053026eefb62712f05c26", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 119868, "upload_time": "2011-08-30T14:35:21", "url": "https://files.pythonhosted.org/packages/11/43/921c29555c9ecc7c50993743fbf554bbfcc8bf2755ecf74c917c1cbea6c9/autobahn-0.4.1.zip" } ], "0.4.10": [ { "comment_text": "", "digests": { "md5": "33d5f6c70638fe1e8681da9aee69955b", "sha256": "c4d70d00865e400b09ed747645e73b7a98d06bc5e3633bfc2a1d9ccbbe870f60" }, "downloads": -1, "filename": "autobahn-0.4.10-py2.7.egg", "has_sig": false, "md5_digest": "33d5f6c70638fe1e8681da9aee69955b", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 369257, "upload_time": "2011-12-13T17:40:53", "url": "https://files.pythonhosted.org/packages/f5/90/d0f9ebef25e241661f250403f8d76094ba4136d56d1cf466bcedc2b1476e/autobahn-0.4.10-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "403cdc1eaa1556257570cf50ee44b70e", "sha256": "da4b0c1d6ab13998c99d60ac8c5649683fd2b7c7d1e626d3bd8a17a6e691c79f" }, "downloads": -1, "filename": "autobahn-0.4.10.win32.exe", "has_sig": false, "md5_digest": "403cdc1eaa1556257570cf50ee44b70e", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 383178, "upload_time": "2011-12-13T17:41:05", "url": "https://files.pythonhosted.org/packages/cd/1d/f2ac6601f6c276f4fa9d7846badc6490d8ce6d9521bb7ddc06c8d31236ad/autobahn-0.4.10.win32.exe" }, { "comment_text": "", "digests": { "md5": "fd61709bb3e1025d673ff202d2b8313e", "sha256": "26b13d786e2a4f1e3ca8cec97379b0d5f9f05fe27ecafa438d25036738a964ac" }, "downloads": -1, "filename": "autobahn-0.4.10.zip", "has_sig": false, "md5_digest": "fd61709bb3e1025d673ff202d2b8313e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 373916, "upload_time": "2011-12-13T17:40:06", "url": "https://files.pythonhosted.org/packages/d1/23/50714b9d2f84594a8079d16c54a6f5650b564e8a6830149e141d48963e47/autobahn-0.4.10.zip" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "f0abd9df71eb1f525c39cec0d6321efb", "sha256": "16e5f43e87ab1fa4795586eb071062635b0880f58bfd36f951408e8d6da02f06" }, "downloads": -1, "filename": "autobahn-0.4.2-py2.7.egg", "has_sig": false, "md5_digest": "f0abd9df71eb1f525c39cec0d6321efb", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 281770, "upload_time": "2011-09-12T14:23:50", "url": "https://files.pythonhosted.org/packages/b3/c5/e6f451f297c7e895c4e07554302d4802df11b8f76edd47e4b5de5c8793a2/autobahn-0.4.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "fb5a90f9dbbbe110c5fe4183a6211e93", "sha256": "320d6760047ae5f25f3aa657438e8729652e1bd86bc92a117b4986db79a34cb4" }, "downloads": -1, "filename": "autobahn-0.4.2.win32.exe", "has_sig": false, "md5_digest": "fb5a90f9dbbbe110c5fe4183a6211e93", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 341208, "upload_time": "2011-09-12T14:23:57", "url": "https://files.pythonhosted.org/packages/de/f5/239aeaf0862c70e67bf56bcde8828a1433d0caed4fc87a889ac20ae66ee6/autobahn-0.4.2.win32.exe" }, { "comment_text": "", "digests": { "md5": "1697cbacaa4dfc654b19262809ed23ed", "sha256": "529ba0616e560d9ce977e7ede5a4847ae4f2a3f2133cd83cd18566317a832b8e" }, "downloads": -1, "filename": "autobahn-0.4.2.zip", "has_sig": false, "md5_digest": "1697cbacaa4dfc654b19262809ed23ed", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 138725, "upload_time": "2011-09-12T14:24:13", "url": "https://files.pythonhosted.org/packages/ef/85/ac5b4331635b184357725aec724f83753d7673b4e90712fe3fdaf2ad3296/autobahn-0.4.2.zip" } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "f1ffb6859efa4f1d7b4f8dce03867569", "sha256": "2bcfb997d641a2f681f56f34507d958659cd1da305d9b4dfb385181ae9d43298" }, "downloads": -1, "filename": "autobahn-0.4.3-py2.7.egg", "has_sig": false, "md5_digest": "f1ffb6859efa4f1d7b4f8dce03867569", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 356645, "upload_time": "2011-10-30T17:45:29", "url": "https://files.pythonhosted.org/packages/56/f9/0d593d310bb3f5b6984b6083df9e59d00c79e102c950ee1415eed3071d55/autobahn-0.4.3-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "0b66e9addd3b13dda326adbae7051c12", "sha256": "217c5cbcf058762e01984bb2bb96d779dd35281660c1b316f992f6f431a469d7" }, "downloads": -1, "filename": "autobahn-0.4.3.win32.exe", "has_sig": false, "md5_digest": "0b66e9addd3b13dda326adbae7051c12", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 376960, "upload_time": "2011-10-30T17:45:47", "url": "https://files.pythonhosted.org/packages/fd/fa/c25a0c8bde8b58dbc50260cdca41f6e7cf8a6d7db062f471d43a776dd911/autobahn-0.4.3.win32.exe" }, { "comment_text": "", "digests": { "md5": "7bbb329cc453625e8631a826a9dbca44", "sha256": "d6d767494242f068a0985627e8ff015a334ef389c2cab99fa0b7bbea4ef8fff4" }, "downloads": -1, "filename": "autobahn-0.4.3.zip", "has_sig": false, "md5_digest": "7bbb329cc453625e8631a826a9dbca44", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 184296, "upload_time": "2011-10-30T17:44:22", "url": "https://files.pythonhosted.org/packages/dc/df/6b4be8f9243e87fe18a3ec0a4c29beacbb2dde1a66201e0610e9bcdcf5ab/autobahn-0.4.3.zip" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "5f0c9ff4e54d7de1f7e2652b16f6725a", "sha256": "2537f466f0efdfaa2b12881202343e59b41a91894a6c9b313a5907e1b78fe219" }, "downloads": -1, "filename": "autobahn-0.5.0-py2.7.egg", "has_sig": false, "md5_digest": "5f0c9ff4e54d7de1f7e2652b16f6725a", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 104914, "upload_time": "2012-03-21T09:52:15", "url": "https://files.pythonhosted.org/packages/aa/b3/6361d79d351c6fb0d715bf4e60ceba5c93d61c696da80f118024357a1cb0/autobahn-0.5.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "728a64fd1a1b90abf7000e8604c8e2a9", "sha256": "955e27765c74a8982eac17bb4ebf0cbdddfc37a71ba0469c458db94aeee35e12" }, "downloads": -1, "filename": "autobahn-0.5.0.win32.exe", "has_sig": false, "md5_digest": "728a64fd1a1b90abf7000e8604c8e2a9", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 248195, "upload_time": "2012-03-21T09:52:26", "url": "https://files.pythonhosted.org/packages/64/a7/88fbf8632a0095bb08237b558b6f996f789925b9d86e0b293aad266a2316/autobahn-0.5.0.win32.exe" }, { "comment_text": "", "digests": { "md5": "3ab33f56fe1f3e209efce7ce9ca517c5", "sha256": "2e843596d619f71d7d71b6d715b2331eac85873f881115cef30b5742a5cacb82" }, "downloads": -1, "filename": "autobahn-0.5.0.zip", "has_sig": false, "md5_digest": "3ab33f56fe1f3e209efce7ce9ca517c5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 53255, "upload_time": "2012-03-21T09:51:56", "url": "https://files.pythonhosted.org/packages/b1/c5/28af568414afab1227756d17ca0c91e9e54daf0c31a7248698ffbc48fc25/autobahn-0.5.0.zip" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "db334934bc3ae5295595d8c2e7ae052f", "sha256": "a9b305a5aa2daac86cd5db43892cc8d4815dd92f5f57f66dcfa341a55615aead" }, "downloads": -1, "filename": "autobahn-0.5.1-py2.7.egg", "has_sig": false, "md5_digest": "db334934bc3ae5295595d8c2e7ae052f", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 112275, "upload_time": "2012-03-27T19:10:13", "url": "https://files.pythonhosted.org/packages/d3/5e/2b260700a0464df66002639a0d49a4e3f78dc5f99d5cf622793d50cb26cb/autobahn-0.5.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "9bd774d18edb08e4ffb7e88377ed174b", "sha256": "bde07931852071a9fef5391156be8427b24cf7434644901f89d2c344db01fe8a" }, "downloads": -1, "filename": "autobahn-0.5.1.win32.exe", "has_sig": false, "md5_digest": "9bd774d18edb08e4ffb7e88377ed174b", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 251907, "upload_time": "2012-03-27T19:10:22", "url": "https://files.pythonhosted.org/packages/b0/11/bfca2762dd96db3fce98f0d5ddcaf5f49efe20cd8f9da69a371fe3a0bdfa/autobahn-0.5.1.win32.exe" }, { "comment_text": "", "digests": { "md5": "92d27b702a269d948b370d41246eff8f", "sha256": "321a53d122cd9233e2e031bf736c4ac8fc6c9add688f92c2283841e77178ae3e" }, "downloads": -1, "filename": "autobahn-0.5.1.zip", "has_sig": false, "md5_digest": "92d27b702a269d948b370d41246eff8f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56973, "upload_time": "2012-03-27T19:10:03", "url": "https://files.pythonhosted.org/packages/85/41/39b3b4fd3f347d8e3a493f979f7662362d6b1a44ef1370603239683573ea/autobahn-0.5.1.zip" } ], "0.5.14": [ { "comment_text": "", "digests": { "md5": "941fb279407728f6c737e576024f57f6", "sha256": "483edf3519b0faca7290f6799c6dc172afe3e2783b5d036e98d28ab628205149" }, "downloads": -1, "filename": "autobahn-0.5.14-py2.7.egg", "has_sig": false, "md5_digest": "941fb279407728f6c737e576024f57f6", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 141324, "upload_time": "2013-02-25T13:00:46", "url": "https://files.pythonhosted.org/packages/d7/b3/8d3653e8b2e06f1e94ee85946c16ea76b116fca8394a22018be51241a628/autobahn-0.5.14-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "5ff8480157999e204247f65c017f5d2f", "sha256": "2971c9c045c7c239cf5abaddb7c25867645dc37519909fe6f3646bece2121fdb" }, "downloads": -1, "filename": "autobahn-0.5.14.win32.exe", "has_sig": false, "md5_digest": "5ff8480157999e204247f65c017f5d2f", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 265865, "upload_time": "2013-02-25T13:01:05", "url": "https://files.pythonhosted.org/packages/8e/27/c076b65c0a0ba681d6b96bd26cc1dab03cb1fd1462056fe5dcd72aedb9f6/autobahn-0.5.14.win32.exe" }, { "comment_text": "", "digests": { "md5": "e2c80ba3e46428b32837537609d4d582", "sha256": "d56979d4dffae6dc4d9c840629b9a8092ac41ea75f55052d70943edf7e01979d" }, "downloads": -1, "filename": "autobahn-0.5.14.zip", "has_sig": false, "md5_digest": "e2c80ba3e46428b32837537609d4d582", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 71208, "upload_time": "2013-02-25T13:00:29", "url": "https://files.pythonhosted.org/packages/dc/a6/e9e85477730f6670568e937f9c0bc5ae2bf695ce5d80f41974f17fb43b5e/autobahn-0.5.14.zip" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "4528c0405fa6fe1c4d575e6f142c9824", "sha256": "adc69bd9ca7ae4df147fd299898d197df893f0e9c5dc84c4128fb27767c02caf" }, "downloads": -1, "filename": "autobahn-0.5.2-py2.7.egg", "has_sig": false, "md5_digest": "4528c0405fa6fe1c4d575e6f142c9824", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 120255, "upload_time": "2012-06-06T16:17:04", "url": "https://files.pythonhosted.org/packages/64/3c/31675f787cfc168cb5f55339cfae86863915ecddd7255000b6d95372bb87/autobahn-0.5.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "c521bffd080420a36efb477594b066ce", "sha256": "f193e77b5f15b94fb88e103e4901a9ea58603956982d8cfe3be5ad372e86141d" }, "downloads": -1, "filename": "autobahn-0.5.2.win32.exe", "has_sig": false, "md5_digest": "c521bffd080420a36efb477594b066ce", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 255434, "upload_time": "2012-06-06T16:17:15", "url": "https://files.pythonhosted.org/packages/63/b0/05c8cc3daa504311998647809ff1f0427f3b2d42bf03a419b9cfca08ef79/autobahn-0.5.2.win32.exe" }, { "comment_text": "", "digests": { "md5": "80e41acfa30e88bbaf71ce5a81be7f1a", "sha256": "bf263535c9f5f28a7827a4cb667630fb59254e7a81e9c979ecfdc048a2c7f7b1" }, "downloads": -1, "filename": "autobahn-0.5.2.zip", "has_sig": false, "md5_digest": "80e41acfa30e88bbaf71ce5a81be7f1a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 60501, "upload_time": "2012-06-06T16:16:54", "url": "https://files.pythonhosted.org/packages/c2/98/d7493e1e8daed9ef65b366ca76692debe6ff971495ba83e2c09dae0d2b5e/autobahn-0.5.2.zip" } ], "0.5.5": [ { "comment_text": "", "digests": { "md5": "43055a412b26ddefa1c753002c416dd7", "sha256": "71655a68569d38a6fa99d833fbb8548e1a8e5e862cfc6ba39b83dd510189447b" }, "downloads": -1, "filename": "autobahn-0.5.5-py2.7.egg", "has_sig": false, "md5_digest": "43055a412b26ddefa1c753002c416dd7", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 125969, "upload_time": "2012-07-23T13:50:22", "url": "https://files.pythonhosted.org/packages/2b/a8/430bd6ee2f891387347cd753fa0f76b915714541cb530cabdb1ea8998817/autobahn-0.5.5-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "01572c75ea9d753d01f352d43701f3eb", "sha256": "846ac1ced99047e112befad6ac44147eb9cacab112ee93d24cd3aa4dacf1e637" }, "downloads": -1, "filename": "autobahn-0.5.5.win32.exe", "has_sig": false, "md5_digest": "01572c75ea9d753d01f352d43701f3eb", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 258617, "upload_time": "2012-07-23T13:50:32", "url": "https://files.pythonhosted.org/packages/a8/00/f50975a36b1ac638e591242ec62afb3c6cc6c977dbed71affca13446defc/autobahn-0.5.5.win32.exe" }, { "comment_text": "", "digests": { "md5": "237cb4b2b831b6357eeaf028bc5052aa", "sha256": "180d4a521bfff5a5a7b6dee5138b0d8adab1965b9af026d4b2c7b3d855d1a9a1" }, "downloads": -1, "filename": "autobahn-0.5.5.zip", "has_sig": false, "md5_digest": "237cb4b2b831b6357eeaf028bc5052aa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 63694, "upload_time": "2012-07-23T13:50:05", "url": "https://files.pythonhosted.org/packages/ad/bb/6f5fe41644396f5d53d285c7662edc6b77d9f6b6e3196c90e0eda4fcb3b1/autobahn-0.5.5.zip" } ], "0.5.8": [ { "comment_text": "", "digests": { "md5": "217e4e960d5622f2df9fae3f4cc3a4c3", "sha256": "3d5cc6c5812a955ca58c96226ba69d3ec720d7a84fa564b3aea11831db330f69" }, "downloads": -1, "filename": "autobahn-0.5.8-py2.7.egg", "has_sig": false, "md5_digest": "217e4e960d5622f2df9fae3f4cc3a4c3", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 126589, "upload_time": "2012-09-07T17:42:31", "url": "https://files.pythonhosted.org/packages/9f/a3/73484939e9484b6a365db56b64d73a7d9944a9caba4841ce7743cc517d76/autobahn-0.5.8-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "ad5ea015993ab0dbed5f516d6ccbf35c", "sha256": "3e7b2ab20de274bb187802bb821acbc9df043176ae24d3359913a0d4c4b87bbd" }, "downloads": -1, "filename": "autobahn-0.5.8.win32.exe", "has_sig": false, "md5_digest": "ad5ea015993ab0dbed5f516d6ccbf35c", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 259029, "upload_time": "2012-09-07T17:42:42", "url": "https://files.pythonhosted.org/packages/8c/4e/9892540a03d194df6addc8f124512640480fb4b51e52daf2bc1d97ec8167/autobahn-0.5.8.win32.exe" }, { "comment_text": "", "digests": { "md5": "fba5a322a290b01a3744e0737b951349", "sha256": "fafae81bf80a2a56342e188238dfa0873dbf250fe209da8134d94314edc906f0" }, "downloads": -1, "filename": "autobahn-0.5.8.zip", "has_sig": false, "md5_digest": "fba5a322a290b01a3744e0737b951349", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 64107, "upload_time": "2012-09-07T17:42:20", "url": "https://files.pythonhosted.org/packages/a2/42/f0d00832d29890894899ed63fd02fe80229c3f0ed66bd3d77bac57c0784a/autobahn-0.5.8.zip" } ], "0.5.9": [ { "comment_text": "", "digests": { "md5": "bd8180c513affd89ba0280056ef04bbc", "sha256": "69ca8b65a9904ddd23a652270fc418d93e35bee447c3331403873e24718ac42d" }, "downloads": -1, "filename": "autobahn-0.5.9-py2.7.egg", "has_sig": false, "md5_digest": "bd8180c513affd89ba0280056ef04bbc", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 129521, "upload_time": "2012-10-22T08:22:52", "url": "https://files.pythonhosted.org/packages/cc/42/3f4bef47954aa837631f588ea2144edd680935250a58ab3656f83cbd03f5/autobahn-0.5.9-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "1dc85de1f0efaef26475bb8842dd2838", "sha256": "2781c45ef0a975eafc6e325bf31ce905d2580c2939040ee6a44568ca66e30063" }, "downloads": -1, "filename": "autobahn-0.5.9.win32.exe", "has_sig": false, "md5_digest": "1dc85de1f0efaef26475bb8842dd2838", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 260484, "upload_time": "2012-10-22T08:23:06", "url": "https://files.pythonhosted.org/packages/3c/0d/d7da10e7cc35f13b23a97571ce45731891fb792c0b3ad5b9c97329a3b48d/autobahn-0.5.9.win32.exe" }, { "comment_text": "", "digests": { "md5": "f8018b9bae62b47812a551bff1fd14ab", "sha256": "5ac3359935af572dcc3973dac1a43aefb1e1331d0907de7af39b2440d31ff8e2" }, "downloads": -1, "filename": "autobahn-0.5.9.zip", "has_sig": false, "md5_digest": "f8018b9bae62b47812a551bff1fd14ab", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 65562, "upload_time": "2012-10-22T08:22:41", "url": "https://files.pythonhosted.org/packages/3c/e4/cba5f80c53a57fe37f990ceef287e9704cb1be1fb897d30d3d07694d6332/autobahn-0.5.9.zip" } ], "0.6.3": [ { "comment_text": "", "digests": { "md5": "bcd5ea79f6debc75cd06a4ecbe157b60", "sha256": "a97d59c5d9989d048e2988c7a301b7a1c40f6bf6b0685c2fac9b5103b4a649ba" }, "downloads": -1, "filename": "autobahn-0.6.3-py2.7.egg", "has_sig": false, "md5_digest": "bcd5ea79f6debc75cd06a4ecbe157b60", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 187200, "upload_time": "2013-10-05T13:14:28", "url": "https://files.pythonhosted.org/packages/d8/11/48280991b22494ac3774bda8d03e7ff19946cac2cc49a0c332ce43bccd29/autobahn-0.6.3-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "1826224395e27813cbd574085e56388c", "sha256": "da1907668deeade61c32ef4de622308773868904f010f102e6557ba0b175fc61" }, "downloads": -1, "filename": "autobahn-0.6.3.win32.exe", "has_sig": false, "md5_digest": "1826224395e27813cbd574085e56388c", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 286251, "upload_time": "2013-10-05T13:14:33", "url": "https://files.pythonhosted.org/packages/5f/6c/763f47f89ed9dac6986b25c27c47380783a0e6eee8cc83090bb8b6c19302/autobahn-0.6.3.win32.exe" }, { "comment_text": "", "digests": { "md5": "400fe0f8e6adcb31dca970a04817c3c5", "sha256": "9bf95e523bc3500168b85c38f7821ae8b5ebe53bae6b507cfdb75090d14a3556" }, "downloads": -1, "filename": "autobahn-0.6.3.zip", "has_sig": false, "md5_digest": "400fe0f8e6adcb31dca970a04817c3c5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96006, "upload_time": "2013-10-05T13:14:24", "url": "https://files.pythonhosted.org/packages/f4/05/da53e55973b8de44300edea802640f88285aed86909ad982e6a344dd021e/autobahn-0.6.3.zip" } ], "0.6.4": [ { "comment_text": "", "digests": { "md5": "5551fb1b5840c4aea4c045e675684c00", "sha256": "0abd6aa2a24b281fc66761bbf8d4252069c94ec11860a52c30fc7e2e6b595f30" }, "downloads": -1, "filename": "autobahn-0.6.4-py2.7.egg", "has_sig": false, "md5_digest": "5551fb1b5840c4aea4c045e675684c00", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 188262, "upload_time": "2013-10-21T15:38:06", "url": "https://files.pythonhosted.org/packages/e0/c1/31c0dbae43a3a7a0441bca5f9c0cc33b2737458b2c2bcfa9b9fc2e1190f0/autobahn-0.6.4-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "2e349b595e6ee4c307a9a93329c8955b", "sha256": "36f4b8628a97e1f2ac65f76966a5bbf1707b9d4ceb8a5fe6e982a01ea9af676e" }, "downloads": -1, "filename": "autobahn-0.6.4.win32.exe", "has_sig": false, "md5_digest": "2e349b595e6ee4c307a9a93329c8955b", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 286855, "upload_time": "2013-10-21T15:38:12", "url": "https://files.pythonhosted.org/packages/32/94/8251d5e2d1ca96d44f2f923312c14deaa7a8440438e1625329f68413c4be/autobahn-0.6.4.win32.exe" }, { "comment_text": "", "digests": { "md5": "23ea0ac72869fa0d2d9d59ef1a02f418", "sha256": "2f37a636617418b5757646681d56180384fc0d03e1a3b1602bd3f2974bb1caf8" }, "downloads": -1, "filename": "autobahn-0.6.4.zip", "has_sig": false, "md5_digest": "23ea0ac72869fa0d2d9d59ef1a02f418", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96609, "upload_time": "2013-10-21T15:38:02", "url": "https://files.pythonhosted.org/packages/c6/ad/893c9255a2c8bd48c33741d28128c5e123f737487d62b54b5273a0404db5/autobahn-0.6.4.zip" } ], "0.6.5": [ { "comment_text": "", "digests": { "md5": "ef4a3ed141529e537b9baf7930de0d7f", "sha256": "60c0f54e904a626f8deaf1d1f26964a046e0c7c0df3da6784dd69a6c5871b69c" }, "downloads": -1, "filename": "autobahn-0.6.5-py2.7.egg", "has_sig": false, "md5_digest": "ef4a3ed141529e537b9baf7930de0d7f", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 189241, "upload_time": "2013-11-22T12:03:41", "url": "https://files.pythonhosted.org/packages/7c/c0/30cf7d6544e6f85783fe5458d0ee6367da726ef2266c4284eef3c806563d/autobahn-0.6.5-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "c7357ab5663056685eb33c9003c05216", "sha256": "4f8ba08db657884225b68c5ba867cac98f6cdd10cc415d498e12641b4c19b8d4" }, "downloads": -1, "filename": "autobahn-0.6.5.win32.exe", "has_sig": false, "md5_digest": "c7357ab5663056685eb33c9003c05216", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 287631, "upload_time": "2013-11-22T12:03:47", "url": "https://files.pythonhosted.org/packages/77/6c/654d00fc66497eafc57d45e6d7b05ea9c9defe9ca348cfd814a4048c747d/autobahn-0.6.5.win32.exe" }, { "comment_text": "", "digests": { "md5": "90bfd4391c6ff059e4cc322966145a44", "sha256": "7953d483175d72570520fed426138b2fd9910906fda6f995e9d0637ce52d9b1d" }, "downloads": -1, "filename": "autobahn-0.6.5.zip", "has_sig": false, "md5_digest": "90bfd4391c6ff059e4cc322966145a44", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 97385, "upload_time": "2013-11-22T12:03:34", "url": "https://files.pythonhosted.org/packages/37/72/4e472d8fbe7f3977efcb357bb627cae1245ee1d4844a42dbfb6d9111c2cd/autobahn-0.6.5.zip" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "6d82440b1ad61ed6d70649e7937ad403", "sha256": "06b32296d2b06e083140fdae7f1dffa70cc0f432f2fedc87a950f86c731a8521" }, "downloads": -1, "filename": "autobahn-0.7.0.tar.gz", "has_sig": false, "md5_digest": "6d82440b1ad61ed6d70649e7937ad403", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 103982, "upload_time": "2014-01-01T23:27:07", "url": "https://files.pythonhosted.org/packages/e5/69/469e67abca605878781985a6c54a0ff5bdcbbf89a04ccd98564c4cd7af24/autobahn-0.7.0.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "52f71245009e16ad125a9971509d0826", "sha256": "a6a796bc80be0d05b953061cea2334a3f780c7e1ac32b2e0bf07e6e8279d1442" }, "downloads": -1, "filename": "autobahn-0.7.1.tar.gz", "has_sig": false, "md5_digest": "52f71245009e16ad125a9971509d0826", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 103985, "upload_time": "2014-01-04T20:25:07", "url": "https://files.pythonhosted.org/packages/9a/65/7feb12c5505a5931a5e21d390ed219aa9869f5a4d471ff449f1fbf9986e3/autobahn-0.7.1.tar.gz" } ], "0.7.2": [ { "comment_text": "", "digests": { "md5": "4dd99f507bb2261033a671c3a85252d2", "sha256": "1e30d6911c16cb1e5040cfe53e2e2d79571e999f26c64fcce86d5553a0ac1739" }, "downloads": -1, "filename": "autobahn-0.7.2.tar.gz", "has_sig": false, "md5_digest": "4dd99f507bb2261033a671c3a85252d2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 107720, "upload_time": "2014-01-05T01:15:59", "url": "https://files.pythonhosted.org/packages/3e/5c/343087faca9a0708811a32b75f0fdc4d0ed901cb3863e19c105151caf13d/autobahn-0.7.2.tar.gz" } ], "0.7.3": [ { "comment_text": "", "digests": { "md5": "c139a6953a1cf3415e49241ade270106", "sha256": "580d6d8743a782385e9d5026b68d4247c76529e90cae2c58d5eedd5ac9a4d909" }, "downloads": -1, "filename": "autobahn-0.7.3.tar.gz", "has_sig": false, "md5_digest": "c139a6953a1cf3415e49241ade270106", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 111129, "upload_time": "2014-01-07T12:34:50", "url": "https://files.pythonhosted.org/packages/71/83/484c08f0977f3e332c14f283ee9b6b9cffde86973f3ca40ef9fda659972b/autobahn-0.7.3.tar.gz" } ], "0.7.4": [ { "comment_text": "", "digests": { "md5": "5ec8951a1c0b246fc4fba83c709707c1", "sha256": "b0c3900bab665638c6c3e117815c4ef8cf563beda059c102e4b6a6d4496be8d7" }, "downloads": -1, "filename": "autobahn-0.7.4.zip", "has_sig": false, "md5_digest": "5ec8951a1c0b246fc4fba83c709707c1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 143447, "upload_time": "2014-01-11T22:58:44", "url": "https://files.pythonhosted.org/packages/1c/a6/3cc8ba02b3d94e348b401bafa8765fe350ce6bc47fe79d21da5cbf1344f9/autobahn-0.7.4.zip" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "c8313cb19ec101a5fa02c6ea0ed61a04", "sha256": "58762c43a701bfd0503376584e98a2ffe22a913cf5bfc1743c51f52123b6e4c2" }, "downloads": -1, "filename": "autobahn-0.8.0.zip", "has_sig": false, "md5_digest": "c8313cb19ec101a5fa02c6ea0ed61a04", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 158304, "upload_time": "2014-01-30T17:42:24", "url": "https://files.pythonhosted.org/packages/7a/29/7b81d1c451fbcb50cc53c03170512b17b53bbc0d560fed01ec4fd5396042/autobahn-0.8.0.zip" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "098179c455947e26608f105ae08c8493", "sha256": "b70464b9f20ce16a02ab932f03955279043e600cc6dbcd7c46f3e0446be11f61" }, "downloads": -1, "filename": "autobahn-0.8.1.zip", "has_sig": false, "md5_digest": "098179c455947e26608f105ae08c8493", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 160477, "upload_time": "2014-02-07T15:49:57", "url": "https://files.pythonhosted.org/packages/8f/8f/01f9fc1716d601b52d450d2101946e8b6ecf8ea20a359b3b63efe832e798/autobahn-0.8.1.zip" } ], "0.8.10": [ { "comment_text": "", "digests": { "md5": "7fc755975d39b76de882d87aa9f90f95", "sha256": "363bffbe53d0ef510b73a8b68eea32f1283e98f58b23318a786797a0fd7b4c70" }, "downloads": -1, "filename": "autobahn-0.8.10.zip", "has_sig": false, "md5_digest": "7fc755975d39b76de882d87aa9f90f95", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 195536, "upload_time": "2014-06-24T16:33:17", "url": "https://files.pythonhosted.org/packages/c7/34/c2b1a8c14687b5a01ece9f8124eb9e1ec1720d5c1ac59439bd4d3f1bd1db/autobahn-0.8.10.zip" } ], "0.8.11": [ { "comment_text": "", "digests": { "md5": "60bacec597210f3289d08f67614d182b", "sha256": "986b45ea761f3e945e76f3149e971db1f4f7322c4f16e7ba506e14826a73668c" }, "downloads": -1, "filename": "autobahn-0.8.11.zip", "has_sig": false, "md5_digest": "60bacec597210f3289d08f67614d182b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 198378, "upload_time": "2014-07-15T12:15:11", "url": "https://files.pythonhosted.org/packages/ec/09/eb97e19fd7c318565cb93e1674a76abfc1eb6c21b7127e495951d8501ee1/autobahn-0.8.11.zip" } ], "0.8.12": [ { "comment_text": "", "digests": { "md5": "ebaf51c3f1f250d149f8215e17c02235", "sha256": "eaf44030b5b52812a08590dc4283631ca76e02dc8e425733fada413977b4da4a" }, "downloads": -1, "filename": "autobahn-0.8.12.zip", "has_sig": false, "md5_digest": "ebaf51c3f1f250d149f8215e17c02235", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 201250, "upload_time": "2014-07-23T15:14:03", "url": "https://files.pythonhosted.org/packages/cc/5f/4626ac7871e1afa2028c05aba43c21da1afad725b339719c914a9dfdf8a0/autobahn-0.8.12.zip" } ], "0.8.13": [ { "comment_text": "", "digests": { "md5": "834d71e4773ee95a0128c7dd73f18e73", "sha256": "27191abc91e9f1cbc044ca909f9b17727bce3de8ba34ecdaaceea9b6b144bb54" }, "downloads": -1, "filename": "autobahn-0.8.13.zip", "has_sig": false, "md5_digest": "834d71e4773ee95a0128c7dd73f18e73", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 202718, "upload_time": "2014-08-05T18:10:05", "url": "https://files.pythonhosted.org/packages/7b/cc/5c702abd1fa4b2c49e1decfb69e9153f0cd226add41143b242f7369cd314/autobahn-0.8.13.zip" } ], "0.8.14": [ { "comment_text": "", "digests": { "md5": "1fb0bd2340f4dc9289eee7703b043c30", "sha256": "3f8a7902635898cd56eb40dc4998ecf75ba59f98f5986e166dd70a7ad2a73657" }, "downloads": -1, "filename": "autobahn-0.8.14.zip", "has_sig": false, "md5_digest": "1fb0bd2340f4dc9289eee7703b043c30", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 204888, "upload_time": "2014-08-14T17:34:26", "url": "https://files.pythonhosted.org/packages/53/62/cd43602f0486d7fdcee28e64cccdc5a2f676b31d4657e609aa8c739d26be/autobahn-0.8.14.zip" } ], "0.8.15": [ { "comment_text": "", "digests": { "md5": "91757ba066504e94c2aad852caa2f34a", "sha256": "a81717be0f414f5830f8ff5013a6a583dd2b794179c31017153ca80c16445ea3" }, "downloads": -1, "filename": "autobahn-0.8.15.zip", "has_sig": false, "md5_digest": "91757ba066504e94c2aad852caa2f34a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 206084, "upload_time": "2014-08-23T16:51:06", "url": "https://files.pythonhosted.org/packages/12/6e/ace8c9b897f580ce427b720ce898491c0e59a39f8b0ca5cdf9d6bab91bec/autobahn-0.8.15.zip" } ], "0.8.2": [ { "comment_text": "", "digests": { "md5": "a7cff61550397dc6d5e8da62f477304e", "sha256": "f44f0db640e2ce1d6c7eb803fb5348f605c1534c242552464af8c85830f25ed9" }, "downloads": -1, "filename": "autobahn-0.8.2.zip", "has_sig": false, "md5_digest": "a7cff61550397dc6d5e8da62f477304e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 161457, "upload_time": "2014-02-24T15:15:34", "url": "https://files.pythonhosted.org/packages/43/7e/4f953892d2660d734e04ab39a2945e9623c3a25d2696d25107bed3a0ab7f/autobahn-0.8.2.zip" } ], "0.8.3": [ { "comment_text": "", "digests": { "md5": "111f825423da398ec05ecb9eb1d64c25", "sha256": "2d98e2dd155d967762377ed475595f0e3c1bbf91618e82db9bcd84d8b31c8d31" }, "downloads": -1, "filename": "autobahn-0.8.3.zip", "has_sig": false, "md5_digest": "111f825423da398ec05ecb9eb1d64c25", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 161598, "upload_time": "2014-03-01T17:05:04", "url": "https://files.pythonhosted.org/packages/4a/5c/8a8e35a5c1767f3f42811c549dd3dcf535b3d2bea27839a9fce9f7b85a16/autobahn-0.8.3.zip" } ], "0.8.4": [ { "comment_text": "", "digests": { "md5": "4ed7f866edd492ff8dbfce6c5520dc48", "sha256": "ebfeabf9029593bcbd9cdd46dbee53d4e7af3ce6bfb20dc0f1e732e28a1798f1" }, "downloads": -1, "filename": "autobahn-0.8.4.zip", "has_sig": false, "md5_digest": "4ed7f866edd492ff8dbfce6c5520dc48", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 162200, "upload_time": "2014-03-03T17:46:07", "url": "https://files.pythonhosted.org/packages/94/d8/fd93831abdd442fd4e46081f832c61374748aa6a03ee5d00f10fff3635cb/autobahn-0.8.4.zip" } ], "0.8.4-2": [ { "comment_text": "", "digests": { "md5": "460ccaec1e85301094b19b95d9983023", "sha256": "bd7e5ad838e205b7be27bfdcef3488ef09f3bb34d764dddc3e3b4be169f7c47c" }, "downloads": -1, "filename": "autobahn-0.8.4-2.zip", "has_sig": false, "md5_digest": "460ccaec1e85301094b19b95d9983023", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 162504, "upload_time": "2014-03-03T23:10:10", "url": "https://files.pythonhosted.org/packages/7b/91/96869d981bca61e852289a6db878456b287cba697b9bb2e06c4ee14276ac/autobahn-0.8.4-2.zip" } ], "0.8.4-3": [ { "comment_text": "", "digests": { "md5": "ece3f7b2edbd520f3a732d12bc433b45", "sha256": "ca781e6b5a60cd8b45da749ea3c325e334c96d1a8d6bb5418d77f26302936b4e" }, "downloads": -1, "filename": "autobahn-0.8.4-3.zip", "has_sig": false, "md5_digest": "ece3f7b2edbd520f3a732d12bc433b45", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 162899, "upload_time": "2014-03-07T15:15:50", "url": "https://files.pythonhosted.org/packages/17/99/5937aad036a834ad37df4f535bd6bc74490200f078ac6ec1e2f66dd2b581/autobahn-0.8.4-3.zip" } ], "0.8.5": [ { "comment_text": "", "digests": { "md5": "1aa9843fa4cbadf9ce35a32b28f0c909", "sha256": "e5d39341c725834c909f9d038c4504ed6d39bb8f0c50a4c79943a2b9b6376056" }, "downloads": -1, "filename": "autobahn-0.8.5.zip", "has_sig": false, "md5_digest": "1aa9843fa4cbadf9ce35a32b28f0c909", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 164294, "upload_time": "2014-03-13T15:36:08", "url": "https://files.pythonhosted.org/packages/08/3c/2193a7badc3b75d6435e971616bc21b9bf3ed0fc30c30017e1b8d5660b6d/autobahn-0.8.5.zip" } ], "0.8.6": [ { "comment_text": "", "digests": { "md5": "160429e7fb043940e79aa7f4ebbab57a", "sha256": "94ae5c6f37f9fe7c9d3f12c170fcc273afed4104a1c5508b26d6014bb9e6373e" }, "downloads": -1, "filename": "autobahn-0.8.6.zip", "has_sig": false, "md5_digest": "160429e7fb043940e79aa7f4ebbab57a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 164543, "upload_time": "2014-03-20T21:51:58", "url": "https://files.pythonhosted.org/packages/ee/06/01d16868ee8279a572bd76e033cec808b2bc2ce9a67d9c77f2c5a9f0b13f/autobahn-0.8.6.zip" } ], "0.8.7": [ { "comment_text": "", "digests": { "md5": "0f87e3072d6ce3ad9d6e2c771f405665", "sha256": "54509b269ba548fcd5694df8aa36b36362d5671b302fc7b2ea7ad4d712865440" }, "downloads": -1, "filename": "autobahn-0.8.7.zip", "has_sig": false, "md5_digest": "0f87e3072d6ce3ad9d6e2c771f405665", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 178652, "upload_time": "2014-04-01T10:41:35", "url": "https://files.pythonhosted.org/packages/72/03/9ccc09f70f7d557d833799120a6ce9be6b31fb122f3162569b305d0f3d88/autobahn-0.8.7.zip" } ], "0.8.8": [ { "comment_text": "", "digests": { "md5": "7dc8c0712e82213c0958d5351932a318", "sha256": "8b2778c42549546f5bbc6221949c4bdd71ccee48cb125404a6f6bf70dd6f28c0" }, "downloads": -1, "filename": "autobahn-0.8.8.zip", "has_sig": false, "md5_digest": "7dc8c0712e82213c0958d5351932a318", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 183378, "upload_time": "2014-04-11T16:31:33", "url": "https://files.pythonhosted.org/packages/87/d7/6abeb1d25e40aec7ad864f07f6be75f1770ffdb3182b88b20c5908f75d8f/autobahn-0.8.8.zip" } ], "0.8.9": [ { "comment_text": "", "digests": { "md5": "3abea1f351fe0b675ecf6979311547c6", "sha256": "2e77c032b75fe24790b8c1f5a613906d160919b59569a33a2f5a8fe70e986c83" }, "downloads": -1, "filename": "autobahn-0.8.9.zip", "has_sig": false, "md5_digest": "3abea1f351fe0b675ecf6979311547c6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 187805, "upload_time": "2014-05-28T21:47:35", "url": "https://files.pythonhosted.org/packages/69/f6/2e8a56020038bd0b3a353d81796818d74a93011994fb7a505547dffbd244/autobahn-0.8.9.zip" } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "a45b73d988f3f3c67bd849118808040d", "sha256": "97d1d32923d9f0c2217fbeaa6eecb96f72aaca277457b829055066f8d06868c8" }, "downloads": -1, "filename": "autobahn-0.9.0.zip", "has_sig": false, "md5_digest": "a45b73d988f3f3c67bd849118808040d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 183949, "upload_time": "2014-09-02T20:53:37", "url": "https://files.pythonhosted.org/packages/7a/f0/a98cd6c905ec0bfc2f90a888eef1ee6de1c6c52783a6d84c1f6580d81636/autobahn-0.9.0.zip" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "48ef10bbff8deef5fd6ebb0fe8d37e32", "sha256": "d733c19c193a3095e2be1ace6ac98a439bb51684bd6c47eeed18bcda3c71686a" }, "downloads": -1, "filename": "autobahn-0.9.1.zip", "has_sig": false, "md5_digest": "48ef10bbff8deef5fd6ebb0fe8d37e32", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 185515, "upload_time": "2014-09-22T10:39:03", "url": "https://files.pythonhosted.org/packages/db/a9/cd078e81fec0532a84d34ba026ff1fd29f89782a379e795e399ce20b1373/autobahn-0.9.1.zip" } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "c1dc7b2f9d96759dc1dc11efd42cd30e", "sha256": "ebb3c58cb239b9a9eca4c1817df189f44999ac8078b45002fb111a51b04b7533" }, "downloads": -1, "filename": "autobahn-0.9.2.zip", "has_sig": false, "md5_digest": "c1dc7b2f9d96759dc1dc11efd42cd30e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 186090, "upload_time": "2014-10-17T16:30:12", "url": "https://files.pythonhosted.org/packages/9d/6f/0531d77f44c853a3a7c095617421de675768de91449815d915a9dac6d3d1/autobahn-0.9.2.zip" } ], "0.9.3": [ { "comment_text": "", "digests": { "md5": "10c9ea1376dcd9fe0b31a4737258aa9e", "sha256": "0ff7e4b30ef31f2ad11853e45565795bf0c5abcb9546e740b51b55033dd76402" }, "downloads": -1, "filename": "autobahn-0.9.3.zip", "has_sig": false, "md5_digest": "10c9ea1376dcd9fe0b31a4737258aa9e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 187832, "upload_time": "2014-11-10T10:59:10", "url": "https://files.pythonhosted.org/packages/1d/a7/87b561169edad7367bf6fb9706b3e72855feee954e8e5e34944dfe3bb02e/autobahn-0.9.3.zip" } ], "0.9.3-2": [ { "comment_text": "", "digests": { "md5": "14caac6a8903be9279f3ad8687d338a6", "sha256": "db863c290478a93247e2aa952233d3d305100722c071ebdc7786170d4a7261ab" }, "downloads": -1, "filename": "autobahn-0.9.3-2.zip", "has_sig": false, "md5_digest": "14caac6a8903be9279f3ad8687d338a6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 188406, "upload_time": "2014-11-15T12:23:56", "url": "https://files.pythonhosted.org/packages/3e/e7/bd787a96631ed5cb148a9f1dd4a4bfa9d2dddee4a44bce8414ad59c620ab/autobahn-0.9.3-2.zip" } ], "0.9.3-3": [ { "comment_text": "", "digests": { "md5": "7a127a317f55a10824b492bf58ebddce", "sha256": "8eb03f36907b7c6edd215bc8f4561157aafb0af52aad7fb604bc0a5824d8b64b" }, "downloads": -1, "filename": "autobahn-0.9.3-3.zip", "has_sig": false, "md5_digest": "7a127a317f55a10824b492bf58ebddce", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 188947, "upload_time": "2014-11-15T12:59:59", "url": "https://files.pythonhosted.org/packages/0a/4a/08c6ae25a593ec83d3cf79be42afc47513d39be98ef66af81713e6d790ec/autobahn-0.9.3-3.zip" } ], "0.9.4": [ { "comment_text": "", "digests": { "md5": "c4aac8412b7f771dc717c031680a2ef3", "sha256": "1ff5428cf9d92a32172983bc9b10f20280090c30df7056cc836ae1bfc397accd" }, "downloads": -1, "filename": "autobahn-0.9.4.zip", "has_sig": false, "md5_digest": "c4aac8412b7f771dc717c031680a2ef3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 175745, "upload_time": "2014-12-15T14:05:22", "url": "https://files.pythonhosted.org/packages/00/37/72c2a363459d0e9797368a76cc740dba8c12bbe2c266e3699ad56e749a17/autobahn-0.9.4.zip" } ], "0.9.4-2": [ { "comment_text": "", "digests": { "md5": "aaf13b602104c12dd26825cd0a0a3523", "sha256": "5bb64191cfdd1cbdd90d8e359b389ef62c0acdffd2f68d16ec01fa0a287262f0" }, "downloads": -1, "filename": "autobahn-0.9.4-2.zip", "has_sig": false, "md5_digest": "aaf13b602104c12dd26825cd0a0a3523", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 175894, "upload_time": "2014-12-16T14:25:25", "url": "https://files.pythonhosted.org/packages/7e/88/e1c421917688b70733df30008405ec739640d29f19e027f9f2dc00652aa7/autobahn-0.9.4-2.zip" } ], "0.9.5": [ { "comment_text": "", "digests": { "md5": "5a7e16dcad7d8ab544fa7780c3ae55fc", "sha256": "2bd557b76bdb183b46e935cb959e3fd6a3210d96a0ce9d00a0dc620a077e6cc6" }, "downloads": -1, "filename": "autobahn-0.9.5.zip", "has_sig": false, "md5_digest": "5a7e16dcad7d8ab544fa7780c3ae55fc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 175715, "upload_time": "2015-01-11T19:24:51", "url": "https://files.pythonhosted.org/packages/6c/00/ec94843fc32d91e6be9b1cf4c2c527e83da77eeeb2d044a8a0e8e062b277/autobahn-0.9.5.zip" } ], "0.9.6": [ { "comment_text": "", "digests": { "md5": "99d70138bf0a4e14818916144fd9e3db", "sha256": "7b17ea657ef275a361dba1977cdbfc822c664ef3fc8500c4b0d82cbf42854f9f" }, "downloads": -1, "filename": "autobahn-0.9.6.tar.gz", "has_sig": false, "md5_digest": "99d70138bf0a4e14818916144fd9e3db", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 137891, "upload_time": "2015-02-13T10:27:25", "url": "https://files.pythonhosted.org/packages/19/c1/8d23bc0bf5837f78e3a7c6c7bd57a16e114557f3cbea68b51444c6ecf454/autobahn-0.9.6.tar.gz" } ], "17.10.1": [ { "comment_text": "", "digests": { "md5": "7e31bf0993158bdf3847e0070eb22557", "sha256": "6a7c535fafaca94b2f02afaa008fd78cbdb610c20b272c0d1a1661d077d903af" }, "downloads": -1, "filename": "autobahn-17.10.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7e31bf0993158bdf3847e0070eb22557", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 283492, "upload_time": "2017-10-31T16:21:52", "url": "https://files.pythonhosted.org/packages/e9/0e/f2b9cc44e04147b5fbbb3eadd09130b7830c078a8b8efc316891a3a28ce0/autobahn-17.10.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f8c8d74bf73644719b751e6fb11dc4a3", "sha256": "8cf74132a18da149c5ea3dcbb5e055f6f4fe5a0238b33258d29e89bd276a8078" }, "downloads": -1, "filename": "autobahn-17.10.1.tar.gz", "has_sig": false, "md5_digest": "f8c8d74bf73644719b751e6fb11dc4a3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 212093, "upload_time": "2017-10-31T16:21:55", "url": "https://files.pythonhosted.org/packages/e4/2e/01a64212b1eb580d601fa20f146c962235e3493795f46e3b254597ec635d/autobahn-17.10.1.tar.gz" } ], "17.5.1": [ { "comment_text": "", "digests": { "md5": "62faa728e097fc502ffb7bdb08c6df43", "sha256": "551b2d0b6f1155194543c5e089d6b3ee807bfd36a02d8e218c3f65fd6e00a8ba" }, "downloads": -1, "filename": "autobahn-17.5.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "62faa728e097fc502ffb7bdb08c6df43", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 270397, "upload_time": "2017-05-01T10:37:14", "url": "https://files.pythonhosted.org/packages/c2/d7/81264851c2eb444423f830008c47c04f78dba15f957cd0fd1146bb287930/autobahn-17.5.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b5719654e9acc16d0ff2f50abc32c251", "sha256": "2a32fa76a11f8aa8de482e99ad2b7a8acc8f6c0d430c48aebd4666f080e85d5c" }, "downloads": -1, "filename": "autobahn-17.5.1.tar.gz", "has_sig": false, "md5_digest": "b5719654e9acc16d0ff2f50abc32c251", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 205144, "upload_time": "2017-05-01T10:37:17", "url": "https://files.pythonhosted.org/packages/1a/91/bb5e28db37a4fdc7c056c352277cd6847849b6a7721be7c458941f480267/autobahn-17.5.1.tar.gz" } ], "17.6.1": [ { "comment_text": "", "digests": { "md5": "df88833df31c000ab840743445977c9e", "sha256": "d612abd8a7f23f1d9ed45926531b9dc7a680ea4fe30c06e486aed61d2929ac62" }, "downloads": -1, "filename": "autobahn-17.6.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "df88833df31c000ab840743445977c9e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 271049, "upload_time": "2017-06-08T15:35:52", "url": "https://files.pythonhosted.org/packages/e6/8f/ed2947ea6f0bb16b9131da972b0e4caaf775b30267d7110ebe1188353256/autobahn-17.6.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4b93eb98a33e6b5e1cf964ee1d211b75", "sha256": "064452ccc2798d1322330c601bbe416da3559fecc0ebd620a868b2ae60ba6958" }, "downloads": -1, "filename": "autobahn-17.6.1.tar.gz", "has_sig": false, "md5_digest": "4b93eb98a33e6b5e1cf964ee1d211b75", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 205855, "upload_time": "2017-06-08T15:35:56", "url": "https://files.pythonhosted.org/packages/ef/47/5e9d13dbc479ad57867269ad561c4b0226fb4cce59c32ba3dd2cbfc42a3c/autobahn-17.6.1.tar.gz" } ], "17.6.2": [ { "comment_text": "", "digests": { "md5": "3059c316f8a8e233b98a6939d6288df3", "sha256": "c63171a09d5ee1e789b5a47d244f8f65fe705bd08bbc8645902f3776c43c59d8" }, "downloads": -1, "filename": "autobahn-17.6.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3059c316f8a8e233b98a6939d6288df3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 271898, "upload_time": "2017-06-24T12:05:54", "url": "https://files.pythonhosted.org/packages/2b/af/d87485cf49c82b74a4f62b85906ac7beb988cace7e0901e399c6729fe7cb/autobahn-17.6.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "905a07cde5c2eb3566a6d8d40832cac8", "sha256": "1ff8e62752dc0433e3fa0d1e9735a22d2e6db9644db54332c75f7ab208255ab8" }, "downloads": -1, "filename": "autobahn-17.6.2.tar.gz", "has_sig": false, "md5_digest": "905a07cde5c2eb3566a6d8d40832cac8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 206651, "upload_time": "2017-06-24T12:05:58", "url": "https://files.pythonhosted.org/packages/02/77/8429ed2f7c9adc911e9f362f1c8058f87e209e5dc0273bac37d22fbe0b10/autobahn-17.6.2.tar.gz" } ], "17.7.1": [ { "comment_text": "", "digests": { "md5": "d373931a0cdea6c371cfeb4b0eca8574", "sha256": "b79c163e6ddbcfc580ea2d34870dadc333a3bb252b963e4bb80027af65c0612d" }, "downloads": -1, "filename": "autobahn-17.7.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d373931a0cdea6c371cfeb4b0eca8574", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 278854, "upload_time": "2017-07-21T13:04:48", "url": "https://files.pythonhosted.org/packages/e8/d7/d87ceac9f755d9289cb303f7520345f07e7eab2f7d32b67b0ec315dd3fe8/autobahn-17.7.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0458295eff8a05b09982e87125a1a2e8", "sha256": "801a318d5bf6776a60f7a93d715f83f7f12204b470019a339e4e7e14087c17e6" }, "downloads": -1, "filename": "autobahn-17.7.1.tar.gz", "has_sig": false, "md5_digest": "0458295eff8a05b09982e87125a1a2e8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 211238, "upload_time": "2017-07-21T13:04:50", "url": "https://files.pythonhosted.org/packages/34/64/56b69ff88da42b29794a7b6d22f3d55bc2d487443d18a4611e60c1b6d901/autobahn-17.7.1.tar.gz" } ], "17.8.1": [ { "comment_text": "", "digests": { "md5": "f66fae375e2dfb6f3beb57f90de2e88c", "sha256": "8f18b65879954bac0071a9a4e96d057786251d2aca4da3889a6003b742269397" }, "downloads": -1, "filename": "autobahn-17.8.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f66fae375e2dfb6f3beb57f90de2e88c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 279549, "upload_time": "2017-08-15T17:41:34", "url": "https://files.pythonhosted.org/packages/cf/7a/cc3e36bd53ef45e4106c9934dbabda23ffa1d6a10535df9d8930213ab050/autobahn-17.8.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a304ab4c6006cd11402429023441bbf6", "sha256": "72b1b1e30bd41d52e7454ef6fe78fe80ebf2341a747616e2cd854a76203a0ec4" }, "downloads": -1, "filename": "autobahn-17.8.1.tar.gz", "has_sig": false, "md5_digest": "a304ab4c6006cd11402429023441bbf6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 211877, "upload_time": "2017-08-15T17:41:38", "url": "https://files.pythonhosted.org/packages/68/25/e15f18a187fd20deee3c5a1be567e82bc0b2f44f0f5a9e89a9f236dcb9ce/autobahn-17.8.1.tar.gz" } ], "17.9.1": [ { "comment_text": "", "digests": { "md5": "52107dc0e9e0e1e9c6dadcf559ff60aa", "sha256": "fd7dd37bed34f4f6843da5a0995fc9996276b49a1af72241a0bf488dfe9ff12e" }, "downloads": -1, "filename": "autobahn-17.9.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "52107dc0e9e0e1e9c6dadcf559ff60aa", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 280491, "upload_time": "2017-09-04T12:52:55", "url": "https://files.pythonhosted.org/packages/80/48/778cb427049f34680a461b80294b438db14e5253af0f833378dc4ce6fc9a/autobahn-17.9.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "78b40cbbf7c1130bd1241aa51333223f", "sha256": "01378f51a9ff0c99e64482dbb69a39e617f9b520bfeb5f708edd5e36f5899df4" }, "downloads": -1, "filename": "autobahn-17.9.1.tar.gz", "has_sig": false, "md5_digest": "78b40cbbf7c1130bd1241aa51333223f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 209230, "upload_time": "2017-09-04T12:52:59", "url": "https://files.pythonhosted.org/packages/84/07/bd244a0578552fc03bdad6be4d1a135dacccfbc821c34ad4c734b9ffa988/autobahn-17.9.1.tar.gz" } ], "17.9.2": [ { "comment_text": "", "digests": { "md5": "50781578a8b5f5ba588241bae7476276", "sha256": "0ecc2c13bccc60806ae568fa0d20700e37ce45686227c129cc7f24f1b23c0a95" }, "downloads": -1, "filename": "autobahn-17.9.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "50781578a8b5f5ba588241bae7476276", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 280720, "upload_time": "2017-09-12T19:34:23", "url": "https://files.pythonhosted.org/packages/ee/d5/b27614e1b32d702c5891580ddccbbf8e6699dfc39938a1b8509000739fef/autobahn-17.9.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "89fcff6d03d54d1d802ecccaeefb8db7", "sha256": "15758e1f507d191a0b56dca911eba780d12e603e0a4567bd2ec0ec08bf08cd4c" }, "downloads": -1, "filename": "autobahn-17.9.2.tar.gz", "has_sig": false, "md5_digest": "89fcff6d03d54d1d802ecccaeefb8db7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 209442, "upload_time": "2017-09-12T19:34:25", "url": "https://files.pythonhosted.org/packages/17/71/898dbf715057e720b01e351f2b00d881cf1066c0d0dd719446e930de6818/autobahn-17.9.2.tar.gz" } ], "17.9.3": [ { "comment_text": "", "digests": { "md5": "453eea47592f449f77a6172dcb670107", "sha256": "c236ba9f5f72300913b2258ed68d9038813f97f3d2706df93307ac9b508a65e4" }, "downloads": -1, "filename": "autobahn-17.9.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "453eea47592f449f77a6172dcb670107", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 283356, "upload_time": "2017-09-24T07:16:10", "url": "https://files.pythonhosted.org/packages/e8/c4/baed9f385e20c8325e40df2785f8adca13369cc09891fc4e36fb06de7b82/autobahn-17.9.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "26c24d0049c43f902ab0b8d16a3e3ce2", "sha256": "206a3a579a580ca3ce2532ac12ec52d447135c9ace7c4bf6065b832a7cff25ba" }, "downloads": -1, "filename": "autobahn-17.9.3.tar.gz", "has_sig": false, "md5_digest": "26c24d0049c43f902ab0b8d16a3e3ce2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 211993, "upload_time": "2017-09-24T07:16:16", "url": "https://files.pythonhosted.org/packages/68/ed/a2e80b4490955f450d8ef7419a1f7052b21681c8ed2c27c15796674484ff/autobahn-17.9.3.tar.gz" } ], "18.10.1": [ { "comment_text": "", "digests": { "md5": "7fcf3fdd90f81f5dc880536e1ccec034", "sha256": "7fe6f3d6677945b275d8de31cc145ea42dea507a0c91f17fcd791fa2ad9da130" }, "downloads": -1, "filename": "autobahn-18.10.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7fcf3fdd90f81f5dc880536e1ccec034", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 299274, "upload_time": "2018-10-20T12:08:35", "url": "https://files.pythonhosted.org/packages/48/e6/2bab8d8ec8ed58e0c7846ad855379d22371a0e892fd1dcc20229b9016588/autobahn-18.10.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "66767ee7b3dd31e76c77ab18eeaa619c", "sha256": "b5767bebd94ba13fc286604f889f208e7babc77d72d9f372d331bc14c89c5a40" }, "downloads": -1, "filename": "autobahn-18.10.1.tar.gz", "has_sig": false, "md5_digest": "66767ee7b3dd31e76c77ab18eeaa619c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 225766, "upload_time": "2018-10-20T12:08:38", "url": "https://files.pythonhosted.org/packages/e3/42/8a8ba7e371c5d0cbacf42cafd9f562e12cab613edb1f752b6ddfa2f3b280/autobahn-18.10.1.tar.gz" } ], "18.11.1": [ { "comment_text": "", "digests": { "md5": "b953f23f30ddc1f7ca3198fe522a7a39", "sha256": "74914efa7c810323ef838025697024b0858c81a79456c9f581947a2c124c3699" }, "downloads": -1, "filename": "autobahn-18.11.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b953f23f30ddc1f7ca3198fe522a7a39", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 302103, "upload_time": "2018-11-06T18:01:23", "url": "https://files.pythonhosted.org/packages/06/21/e50bed51d9819f9de4fec0d17c6c075ddb3a9a2bbf6d010704249bf81c88/autobahn-18.11.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a3a0648371b41328282a9ab7fe48ccbe", "sha256": "c7e775e46fc033160fa89942de4953ca739f26167f74431dc2c8a3cd165b8755" }, "downloads": -1, "filename": "autobahn-18.11.1.tar.gz", "has_sig": false, "md5_digest": "a3a0648371b41328282a9ab7fe48ccbe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 228222, "upload_time": "2018-11-06T18:01:26", "url": "https://files.pythonhosted.org/packages/01/ee/d401d58dc7732fadf4fd12d7fb87dd2f3e5e2d0ba65865495565f97c2c31/autobahn-18.11.1.tar.gz" } ], "18.11.2": [ { "comment_text": "", "digests": { "md5": "94388ebdda9a89ff151b984af1f13ac4", "sha256": "81ee21d654886cccdce01f9f294c71ff2f6ae7b34244e52b522fddc5400736b3" }, "downloads": -1, "filename": "autobahn-18.11.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "94388ebdda9a89ff151b984af1f13ac4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 302252, "upload_time": "2018-11-22T07:27:08", "url": "https://files.pythonhosted.org/packages/97/2a/d1864e5429da030bfe21f43b22b5a3310cb43ae8816666e1c3895a70aec3/autobahn-18.11.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4a63c94ea306e07602eaca6befd86751", "sha256": "43262e500aaf8b89fb5f0b60ab13163500ee877908cdd6861208546d95c6dba0" }, "downloads": -1, "filename": "autobahn-18.11.2.tar.gz", "has_sig": false, "md5_digest": "4a63c94ea306e07602eaca6befd86751", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 228384, "upload_time": "2018-11-22T07:27:11", "url": "https://files.pythonhosted.org/packages/3a/9f/9552ce8fec2703370f63eedbedffa1151865f1265fbfc5c3bbd1029710cc/autobahn-18.11.2.tar.gz" } ], "18.12.1": [ { "comment_text": "", "digests": { "md5": "fd0803832ae49ec1b91ccaca11b6bcec", "sha256": "7e47532e9af424fdc2c83b0fcadec9b13d53f10f3acf0efb772495138fbdf887" }, "downloads": -1, "filename": "autobahn-18.12.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fd0803832ae49ec1b91ccaca11b6bcec", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 302739, "upload_time": "2018-12-17T17:22:40", "url": "https://files.pythonhosted.org/packages/41/de/a40e3d548e321ddb3e60918966362d4d369ce115f10d81556ac41d99318c/autobahn-18.12.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "51b416c5503127911d9d8f1254967d44", "sha256": "bec9e04c97536a6c0044965db4a478672a01c4adee0aa84d9c4a0945b2adc879" }, "downloads": -1, "filename": "autobahn-18.12.1.tar.gz", "has_sig": false, "md5_digest": "51b416c5503127911d9d8f1254967d44", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 228838, "upload_time": "2018-12-17T17:22:44", "url": "https://files.pythonhosted.org/packages/76/5b/ab59e271a11a08d02b1a3a3b777f7dde442cf89b169bbc67219016a84e7e/autobahn-18.12.1.tar.gz" } ], "18.3.1": [ { "comment_text": "", "digests": { "md5": "54d642d49b0defa1bb03452edf99c11f", "sha256": "13199ac8e75bde47e8c2468386ce95c2489d3c7ef3eb25ef9f53094f8a2a5f0f" }, "downloads": -1, "filename": "autobahn-18.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "54d642d49b0defa1bb03452edf99c11f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 283492, "upload_time": "2018-03-05T12:47:19", "url": "https://files.pythonhosted.org/packages/4f/0c/3595e9a3ceadfaf70cc02ca8290a60cde7efa853057d4c50ef0bc074ed09/autobahn-18.3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b3705aa5b52687cc2730f90623e2de89", "sha256": "fc1d38227bb44a453b54cffa48de8b2e6ce48ddc5e97fb5950b0faa27576f385" }, "downloads": -1, "filename": "autobahn-18.3.1.tar.gz", "has_sig": false, "md5_digest": "b3705aa5b52687cc2730f90623e2de89", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 213042, "upload_time": "2018-03-05T12:47:21", "url": "https://files.pythonhosted.org/packages/79/c2/d831ba6e27b1b1d36e3443b072632cc25df8ba9d74adf4096bfd5a19dd9c/autobahn-18.3.1.tar.gz" } ], "18.4.1": [ { "comment_text": "", "digests": { "md5": "36c8d7cb15d4fbf51eb30332b9f1ad91", "sha256": "4d8ec6c1f2c6e8af20dd1858b2c064a329ff89847d4ff5ccbb64cffe9b1d1150" }, "downloads": -1, "filename": "autobahn-18.4.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "36c8d7cb15d4fbf51eb30332b9f1ad91", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 293912, "upload_time": "2018-04-09T20:25:38", "url": "https://files.pythonhosted.org/packages/ec/80/b1172311d09f7b1b27f9260e21fc4374c4b72ad1ad1c87862e8f364d8b67/autobahn-18.4.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f78b30e15b2c277ff6a474fe16a68258", "sha256": "7b61c7d1b6fc88039776692b779b9c1d8d1ea8727a3aba38ec913ebca8aba164" }, "downloads": -1, "filename": "autobahn-18.4.1.tar.gz", "has_sig": false, "md5_digest": "f78b30e15b2c277ff6a474fe16a68258", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 224355, "upload_time": "2018-04-09T20:25:40", "url": "https://files.pythonhosted.org/packages/9d/38/f36f40a66132d2de78473c307eaa4f6cb01e802ab6b3b3cda002d8a4c4b5/autobahn-18.4.1.tar.gz" } ], "18.5.1": [ { "comment_text": "", "digests": { "md5": "fbc30c5ec3260d47f9d6908d79193151", "sha256": "7fc6aafaccab44cbe5ef904cd18e9cbc8a8c4ae0451c3d1499eebd50f8922cac" }, "downloads": -1, "filename": "autobahn-18.5.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fbc30c5ec3260d47f9d6908d79193151", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 294034, "upload_time": "2018-05-09T18:28:18", "url": "https://files.pythonhosted.org/packages/1b/92/5753b2123802a81bda4a9cf759732dfab21baffb3bfcdac725e097df39df/autobahn-18.5.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b7eaacbbe756374e41eee0956f425516", "sha256": "f027887715628d82ba83af218eb0483ed70cc1e9a277df318be3b5346f2c115c" }, "downloads": -1, "filename": "autobahn-18.5.1.tar.gz", "has_sig": false, "md5_digest": "b7eaacbbe756374e41eee0956f425516", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 224209, "upload_time": "2018-05-09T18:28:21", "url": "https://files.pythonhosted.org/packages/c1/85/aa96db235dc4035bd4c3e71073925e97f2763dfc066c647a509f1e8f9a96/autobahn-18.5.1.tar.gz" } ], "18.5.2": [ { "comment_text": "", "digests": { "md5": "f50f9e710edba02154f246ce690e716a", "sha256": "4f83dfb044bf72312d15f0632c4cf625de3c93912797a00801bd1564560c651e" }, "downloads": -1, "filename": "autobahn-18.5.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f50f9e710edba02154f246ce690e716a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 299079, "upload_time": "2018-05-26T12:29:54", "url": "https://files.pythonhosted.org/packages/71/0c/af6e79f0cc23668454f4a73ec10b96bdb5b7f172509179da4fc92bce4142/autobahn-18.5.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "695134869eeb4128b4548ef23c5f0e6c", "sha256": "fc88885b44fd2f42d962d7ea6a1c9baf3d1551adddb92acc861be17418183fa0" }, "downloads": -1, "filename": "autobahn-18.5.2.tar.gz", "has_sig": false, "md5_digest": "695134869eeb4128b4548ef23c5f0e6c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 224978, "upload_time": "2018-05-26T12:29:56", "url": "https://files.pythonhosted.org/packages/3a/5d/d860a1dc9365908b5ec0fc0c400af267918a892df91e485ef7cb18ce54eb/autobahn-18.5.2.tar.gz" } ], "18.6.1": [ { "comment_text": "", "digests": { "md5": "b181277069d0bf72e205340808eef3cd", "sha256": "83e050f0e0783646dbf6da60fe837f4f825c241080d2b5f080002ae6885b036f" }, "downloads": -1, "filename": "autobahn-18.6.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b181277069d0bf72e205340808eef3cd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 294845, "upload_time": "2018-06-07T15:26:59", "url": "https://files.pythonhosted.org/packages/c9/7a/140264ec2c162bb22f91be76a11554f8ab0eda9bb2c775b6bc0dbbef0d4a/autobahn-18.6.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fcf886ecec48204faaa77441eaef3a17", "sha256": "2f41bfc512ec482044fa8cfa74182118dedd87e03b3494472d9ff1b5a1e27d24" }, "downloads": -1, "filename": "autobahn-18.6.1.tar.gz", "has_sig": false, "md5_digest": "fcf886ecec48204faaa77441eaef3a17", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 224987, "upload_time": "2018-06-07T15:27:02", "url": "https://files.pythonhosted.org/packages/e0/a4/ca655f7fc8cc28274f7415a304e73c525b203828c164cea22e60207afea0/autobahn-18.6.1.tar.gz" } ], "18.7.1": [ { "comment_text": "", "digests": { "md5": "e323975f3d68be5b3fd659c4f48b7849", "sha256": "162229a824e26a1c6e76387106d4bd1355849713b38741dab65e279a439b8fce" }, "downloads": -1, "filename": "autobahn-18.7.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e323975f3d68be5b3fd659c4f48b7849", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 294886, "upload_time": "2018-07-28T19:39:38", "url": "https://files.pythonhosted.org/packages/bd/87/deb1a2e33690136e8bd73d794cb29001bdfcc21eaa4652e332f83f87d758/autobahn-18.7.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9535c9284062bf75b5d2f9c2d58483a0", "sha256": "163dd329c2a29f4ef82f7fe85a6f6e654a2aa6837bd83834cf537e4efa9204be" }, "downloads": -1, "filename": "autobahn-18.7.1.tar.gz", "has_sig": false, "md5_digest": "9535c9284062bf75b5d2f9c2d58483a0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 222236, "upload_time": "2018-07-28T19:39:41", "url": "https://files.pythonhosted.org/packages/df/46/8dfe2b1a9b7d749c6f76b73a3c6523d71424f3e61bd0e30e63a036e34e95/autobahn-18.7.1.tar.gz" } ], "18.8.1": [ { "comment_text": "", "digests": { "md5": "338f437b171d4b49e02b36f138b96dd5", "sha256": "4debaa226ee8a9880e0a534049a6eb2b4e94694342c68a771d3ee06be99dde6a" }, "downloads": -1, "filename": "autobahn-18.8.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "338f437b171d4b49e02b36f138b96dd5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 294719, "upload_time": "2018-08-19T06:34:46", "url": "https://files.pythonhosted.org/packages/16/d3/7f8a0aae880763014e206cb9f6e69a2a7f38aad5f924d9d9e0a2e8cbc42f/autobahn-18.8.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "65fbbe287b08ad3142cd5d1d6bb95b10", "sha256": "b69858e0be4bff8437b0bd82a0db1cbef7405e16bd9354ba587c043d6d5e1ad9" }, "downloads": -1, "filename": "autobahn-18.8.1.tar.gz", "has_sig": false, "md5_digest": "65fbbe287b08ad3142cd5d1d6bb95b10", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 222073, "upload_time": "2018-08-19T06:34:49", "url": "https://files.pythonhosted.org/packages/da/43/b0989a1856c17efc8f8e5598188b35742c3f1aaf994a9018814b76c8d3ec/autobahn-18.8.1.tar.gz" } ], "18.8.2": [ { "comment_text": "", "digests": { "md5": "7d2a2c01f01b5b3380873c83a575c499", "sha256": "eb5859abba1f3ed3098294cfa9cf8e8bcaf487678d51902b64f3e881aebf3686" }, "downloads": -1, "filename": "autobahn-18.8.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7d2a2c01f01b5b3380873c83a575c499", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 297911, "upload_time": "2018-08-31T20:09:24", "url": "https://files.pythonhosted.org/packages/0b/07/0e977a381c3286a4d2c10ed425e3046789857b64ffb109b4af133e84b8c7/autobahn-18.8.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "611c5df7331f8117b93e47f5fb7bf5a8", "sha256": "448df2e241011ea2948799918930042d81e63d26b01912c472f5a9a37f42f319" }, "downloads": -1, "filename": "autobahn-18.8.2.tar.gz", "has_sig": false, "md5_digest": "611c5df7331f8117b93e47f5fb7bf5a8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 224312, "upload_time": "2018-08-31T20:09:26", "url": "https://files.pythonhosted.org/packages/d2/de/afcee4274270d78f10dbca8982427fd0708b0a3297fd46d2f2dee59e73e9/autobahn-18.8.2.tar.gz" } ], "18.9.1": [ { "comment_text": "", "digests": { "md5": "18b175a8edc9b8f87ea266c8bb220b15", "sha256": "ef29f48d9375e20de4d60d63ca3feae330213421c3c3a7319014e1d21db7dfe8" }, "downloads": -1, "filename": "autobahn-18.9.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "18b175a8edc9b8f87ea266c8bb220b15", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 298433, "upload_time": "2018-09-02T20:03:04", "url": "https://files.pythonhosted.org/packages/21/df/1b99046b921c6f80d0bd92edbc6e2ef986df1fd6e1ac7dd88ad3fc56b670/autobahn-18.9.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "efddc3394c4e11f85bfa108c12a9346c", "sha256": "829fbeb08b7e0f7e8cd14d9d169043a861075c3f6e5e2739d564dc985b5e7015" }, "downloads": -1, "filename": "autobahn-18.9.1.tar.gz", "has_sig": false, "md5_digest": "efddc3394c4e11f85bfa108c12a9346c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 224855, "upload_time": "2018-09-02T20:03:06", "url": "https://files.pythonhosted.org/packages/3e/21/2074cfca5addf4f0c7e422798c50c85255ee5963889ee8b32edb06e47221/autobahn-18.9.1.tar.gz" } ], "18.9.2": [ { "comment_text": "", "digests": { "md5": "ef6c98e2a2b5443da47aac484bbf7b0e", "sha256": "3d3e16b5f5ec36cad9e38536e11688346b8a78e09b551bada541d8476ac33f54" }, "downloads": -1, "filename": "autobahn-18.9.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ef6c98e2a2b5443da47aac484bbf7b0e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 298749, "upload_time": "2018-09-10T08:59:12", "url": "https://files.pythonhosted.org/packages/66/29/8e709af556703ad424d50796370ff3d035651d6e00ca0e3905de06a8b302/autobahn-18.9.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e8192e3a4bb7dc59db2a82234b13b080", "sha256": "d98b924f06865700116ee616027e4a6d678004a7b44e0d01cb262eab333112d6" }, "downloads": -1, "filename": "autobahn-18.9.2.tar.gz", "has_sig": false, "md5_digest": "e8192e3a4bb7dc59db2a82234b13b080", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 225185, "upload_time": "2018-09-10T08:59:15", "url": "https://files.pythonhosted.org/packages/68/f8/43ef6e614f27a97a88a6e91768d3917adff630936ec71665fcc3bec48e53/autobahn-18.9.2.tar.gz" } ], "19.1.1": [ { "comment_text": "", "digests": { "md5": "593abf19cf9ce9dbf89f9f34be701951", "sha256": "598037a4064fc4bee4acf63e8c27f3d94c15bf37a5e51d560f03850eced79c6d" }, "downloads": -1, "filename": "autobahn-19.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "593abf19cf9ce9dbf89f9f34be701951", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 302825, "upload_time": "2019-01-10T17:26:00", "url": "https://files.pythonhosted.org/packages/3d/d9/28aa58047558351eea29dafb8ff813af72e39ac35ade686394ca856914a7/autobahn-19.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b296b8ae0f42e7df8052b28d574ede82", "sha256": "aebbadb700c13792a2967c79002855d1153b9ec8f2949d169e908388699596ff" }, "downloads": -1, "filename": "autobahn-19.1.1.tar.gz", "has_sig": false, "md5_digest": "b296b8ae0f42e7df8052b28d574ede82", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 228966, "upload_time": "2019-01-10T17:26:03", "url": "https://files.pythonhosted.org/packages/66/cc/1e2b20dc6654d9a87fc30da36bfae687ec65428814378c44257a26fe5f2f/autobahn-19.1.1.tar.gz" } ], "19.10.1": [ { "comment_text": "", "digests": { "md5": "e1e340724d4f654b258cbc4a73c46601", "sha256": "7ab1e51a9c9bf0aa6ccbe765635b79b9a659019d38904fa3c2072670f097a25d" }, "downloads": -1, "filename": "autobahn-19.10.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e1e340724d4f654b258cbc4a73c46601", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 771955, "upload_time": "2019-09-30T12:42:50", "url": "https://files.pythonhosted.org/packages/4c/1e/619ab12c3cf4dfd251dcb6cbca9581fbb2e648bf80f68d7be4b4b6b99337/autobahn-19.10.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8900783822b570e0395c4bade08e0d51", "sha256": "734385b00547448b3f30a752cbfd2900d15924d77dc4a1699b8bce1ea8899f39" }, "downloads": -1, "filename": "autobahn-19.10.1.tar.gz", "has_sig": false, "md5_digest": "8900783822b570e0395c4bade08e0d51", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 605365, "upload_time": "2019-09-30T12:42:55", "url": "https://files.pythonhosted.org/packages/8d/bb/024c4e669f0b82bc895f95c10105156db0543648db8305390730c4078edf/autobahn-19.10.1.tar.gz" } ], "19.2.1": [ { "comment_text": "", "digests": { "md5": "2c737170b21c074abf6d72c9a2f4cb6d", "sha256": "15e058a65b310a813ec7f3fbefca54b7182dfd64bbd46a0310b6b72ca8773c22" }, "downloads": -1, "filename": "autobahn-19.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2c737170b21c074abf6d72c9a2f4cb6d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 302987, "upload_time": "2019-02-14T13:43:08", "url": "https://files.pythonhosted.org/packages/d5/5d/49152a3ce88ad8f985a4f82ff9633a29f3ef2da050ae8aba8075142f5a61/autobahn-19.2.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ddf27b15e9b4325a70cc8f2089fb5b9e", "sha256": "a70389d2435bc0e961246021e763f3efefee2f2bb73415963c2c004d8990a7d6" }, "downloads": -1, "filename": "autobahn-19.2.1.tar.gz", "has_sig": false, "md5_digest": "ddf27b15e9b4325a70cc8f2089fb5b9e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 229067, "upload_time": "2019-02-14T13:43:11", "url": "https://files.pythonhosted.org/packages/31/3f/cb95d49f6d47f5c9012bd6779b22b0d6c092d15de9c2c4846cae52433392/autobahn-19.2.1.tar.gz" } ], "19.3.1": [ { "comment_text": "", "digests": { "md5": "5d7727e476580ecd57a85dac15a3bcbd", "sha256": "7ae559d0f4627fdbcd054e239add74a7131893026a56c77f523f4a348a48c107" }, "downloads": -1, "filename": "autobahn-19.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5d7727e476580ecd57a85dac15a3bcbd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 387093, "upload_time": "2019-03-18T08:25:02", "url": "https://files.pythonhosted.org/packages/48/69/fb7f05873209f2eee421bcfa8fd27beb3aebae33ab4ceee541b1ede351fc/autobahn-19.3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1061332b08115430895c0f88f601a948", "sha256": "88753c4ab93a6b251ef88d9baa15119db5d2f719b1c214a8d22d30c2774e23d6" }, "downloads": -1, "filename": "autobahn-19.3.1.tar.gz", "has_sig": false, "md5_digest": "1061332b08115430895c0f88f601a948", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 265320, "upload_time": "2019-03-18T08:25:06", "url": "https://files.pythonhosted.org/packages/7d/98/976becd2b3ff695fb3bcaedf6b26c2efefefd840682c2a030bac5cf4e8a6/autobahn-19.3.1.tar.gz" } ], "19.3.2": [ { "comment_text": "", "digests": { "md5": "b426d7cefbc963f345c59fa01fe8f246", "sha256": "87390895ae79482a00470b7bdbcc8e967e12168349f51ab347aa25b3019e0e6c" }, "downloads": -1, "filename": "autobahn-19.3.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b426d7cefbc963f345c59fa01fe8f246", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 387118, "upload_time": "2019-03-18T10:21:34", "url": "https://files.pythonhosted.org/packages/ea/65/e474985b604f91e15b6d07a83ab99650f3e43791c9711f72ad32a29b24e2/autobahn-19.3.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0b5dc2555612d5354148e1dc1963eb5d", "sha256": "70a221d5e01923ea81457de04a3270ea2de376a759345ec4e8693db216c603a9" }, "downloads": -1, "filename": "autobahn-19.3.2.tar.gz", "has_sig": false, "md5_digest": "0b5dc2555612d5354148e1dc1963eb5d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 265350, "upload_time": "2019-03-18T10:21:37", "url": "https://files.pythonhosted.org/packages/10/0c/520d8d759afbe1f8858872cad6332227a1160d0ea32681578ea77ab07df7/autobahn-19.3.2.tar.gz" } ], "19.3.3": [ { "comment_text": "", "digests": { "md5": "8fe94eb5993380effa0a42e15a4085a9", "sha256": "d522202b220d0e73901b9f83909e34c9cb1a77b5dadcc5a485f926f8d2ba8940" }, "downloads": -1, "filename": "autobahn-19.3.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8fe94eb5993380effa0a42e15a4085a9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 389752, "upload_time": "2019-03-24T22:01:19", "url": "https://files.pythonhosted.org/packages/9a/47/229e88fb7fc51b0ddbf7d6eca471dde206775e2f73938590fe89af011fe4/autobahn-19.3.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "72df140c00a5d472a300853c9d016208", "sha256": "e92f40ab26fb51672c25cd301ae79a549c6ff7748effe6abdea2ef31d5363a4f" }, "downloads": -1, "filename": "autobahn-19.3.3.tar.gz", "has_sig": false, "md5_digest": "72df140c00a5d472a300853c9d016208", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 267907, "upload_time": "2019-03-24T22:01:22", "url": "https://files.pythonhosted.org/packages/46/8b/c329cf7a0f591805d8a9fe4b6e88467b8c6e09022b9dfb2242577b983898/autobahn-19.3.3.tar.gz" } ], "19.5.1": [ { "comment_text": "", "digests": { "md5": "2c32097619c96f58ce8eed730058a215", "sha256": "40f07474e5b4b662f5a1106f2c89667c9e2fa52ddc3bab59e1b04adb4a30908d" }, "downloads": -1, "filename": "autobahn-19.5.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2c32097619c96f58ce8eed730058a215", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 399815, "upload_time": "2019-05-12T09:10:59", "url": "https://files.pythonhosted.org/packages/92/5c/3b6605bd1c3bcd94b6d59182a53cc551f2077895c1720888e6b2cf855df6/autobahn-19.5.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7be3e2ec89b1dbbd05951097e6ba1f05", "sha256": "2eee98f68ba4eb8d8ea3f15e411db9e69433d9367799c85bdca0ff2de4c101d3" }, "downloads": -1, "filename": "autobahn-19.5.1.tar.gz", "has_sig": false, "md5_digest": "7be3e2ec89b1dbbd05951097e6ba1f05", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 276319, "upload_time": "2019-05-12T09:11:02", "url": "https://files.pythonhosted.org/packages/3e/78/c27ffd271b7d1fc1d7167b40439261c8a2338332f6270b8f71c9f3e9919f/autobahn-19.5.1.tar.gz" } ], "19.6.1": [ { "comment_text": "", "digests": { "md5": "7b63c61974583c5bf0c7dffb1db01260", "sha256": "92c3ff4c43017bfe2218f38e8bf71bb2dd474e1fc08922c4b4932310b8609c5d" }, "downloads": -1, "filename": "autobahn-19.6.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7b63c61974583c5bf0c7dffb1db01260", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 707875, "upload_time": "2019-06-05T07:35:24", "url": "https://files.pythonhosted.org/packages/28/1b/5ad876e36b9f179ac8249f68122354ba17ddd65275d5986a5513fac41796/autobahn-19.6.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3ec897ebffdddc153a89d3fd96ee7db3", "sha256": "8b58a7d3188e2c103dff5115fd6f449261df7282aa92e741acf676f90443e097" }, "downloads": -1, "filename": "autobahn-19.6.1.tar.gz", "has_sig": false, "md5_digest": "3ec897ebffdddc153a89d3fd96ee7db3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 547160, "upload_time": "2019-06-05T07:35:29", "url": "https://files.pythonhosted.org/packages/d8/0f/edf026f0469ac7f1bf1b86cdc7341f147e2753f17a79b434a74459024f90/autobahn-19.6.1.tar.gz" } ], "19.6.2": [ { "comment_text": "", "digests": { "md5": "240de83a80ea0fa7a24e58c288a9be7f", "sha256": "b03dc7f3e21137650718c0a1ffbff16e2796711799281308cdc27dc14623d142" }, "downloads": -1, "filename": "autobahn-19.6.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "240de83a80ea0fa7a24e58c288a9be7f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 707888, "upload_time": "2019-06-06T07:21:15", "url": "https://files.pythonhosted.org/packages/3e/72/c1266af753f2cc1215c2118f9e3febc8333f80106a8f792164b8f348caed/autobahn-19.6.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d59ab707fa6067e466301d23fb871d9d", "sha256": "48c2d737d33cfe1d37124db984577c5d4f44e116d05a9f8b6505721413ff9b22" }, "downloads": -1, "filename": "autobahn-19.6.2.tar.gz", "has_sig": false, "md5_digest": "d59ab707fa6067e466301d23fb871d9d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 547160, "upload_time": "2019-06-06T07:21:19", "url": "https://files.pythonhosted.org/packages/a0/fd/6b2405331986fad5c320cac3516bc276a20beecc6f66ade0cbd38d37504a/autobahn-19.6.2.tar.gz" } ], "19.7.1": [ { "comment_text": "", "digests": { "md5": "e22497a9c62010d07a3ffbc7e31c2b94", "sha256": "70f0cfb8005b5429df5709acf5d66a8eba00669765547029371648dffd4a0470" }, "downloads": -1, "filename": "autobahn-19.7.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e22497a9c62010d07a3ffbc7e31c2b94", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 710799, "upload_time": "2019-07-08T06:50:36", "url": "https://files.pythonhosted.org/packages/81/72/3c581483034645e1ccacad6528794ffb35a86209c8de575f643031d4d61f/autobahn-19.7.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ae1ce48acbcd967e045c424b22aab0d5", "sha256": "89f94a1535673b1655df28ef91e96b7f34faea76da04a5e56441c9ac779a2f9f" }, "downloads": -1, "filename": "autobahn-19.7.1.tar.gz", "has_sig": false, "md5_digest": "ae1ce48acbcd967e045c424b22aab0d5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 549201, "upload_time": "2019-07-08T06:50:40", "url": "https://files.pythonhosted.org/packages/6d/90/ede3f19deabe3fcfe61211211da60d6c23a70501acef03e22de05d12eacf/autobahn-19.7.1.tar.gz" } ], "19.7.2": [ { "comment_text": "", "digests": { "md5": "bd69fb8d9797ca11044dc46dfb643384", "sha256": "03ef2bad9d596ac04451d1627c18e434dc70f427109fd23911672ad5fe042f6d" }, "downloads": -1, "filename": "autobahn-19.7.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bd69fb8d9797ca11044dc46dfb643384", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 737444, "upload_time": "2019-07-24T19:44:50", "url": "https://files.pythonhosted.org/packages/a2/0c/8fb2b37356d9e09f36ae13f4c2598312b195ea5f67d1834b32e9a23b290d/autobahn-19.7.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e21a25f5f50bd04465abcde0fc333c11", "sha256": "60c2f283137b3aafc06f274949387eebcc78c8faad580a8755f6dc83c74bf0e2" }, "downloads": -1, "filename": "autobahn-19.7.2.tar.gz", "has_sig": false, "md5_digest": "e21a25f5f50bd04465abcde0fc333c11", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 571662, "upload_time": "2019-07-24T19:44:54", "url": "https://files.pythonhosted.org/packages/da/03/4ab1b68d12f8dba7f3e40cbbffc41f2e25e80677e189cdef9c929b83462d/autobahn-19.7.2.tar.gz" } ], "19.8.1": [ { "comment_text": "", "digests": { "md5": "4dae037e542ed712233645f62ba33163", "sha256": "312d0c7b9d970219002a966ec36d559245bf9c6987a787c8c41f17eb53dd36da" }, "downloads": -1, "filename": "autobahn-19.8.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4dae037e542ed712233645f62ba33163", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 772612, "upload_time": "2019-08-01T14:20:42", "url": "https://files.pythonhosted.org/packages/02/55/cc671b201828f4a2def24171394aee0fdd3af46a651fc8104dee8fc2e6ea/autobahn-19.8.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e6045ea79a9c22f6ad1810670d833bcc", "sha256": "294e7381dd54e73834354832604ae85567caf391c39363fed0ea2bfa86aa4304" }, "downloads": -1, "filename": "autobahn-19.8.1.tar.gz", "has_sig": false, "md5_digest": "e6045ea79a9c22f6ad1810670d833bcc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 606454, "upload_time": "2019-08-01T14:20:46", "url": "https://files.pythonhosted.org/packages/7b/b9/3460d9f73aba656f06a22f2bbc92e1c31e567372d66614651582858c93ae/autobahn-19.8.1.tar.gz" } ], "19.9.1": [ { "comment_text": "", "digests": { "md5": "da304fae9c660583bd63a31134b99faf", "sha256": "11878ebfd4a83b85043c627a46f75b5ea8461f9f0655e27d0b13e6bf19404242" }, "downloads": -1, "filename": "autobahn-19.9.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "da304fae9c660583bd63a31134b99faf", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 780482, "upload_time": "2019-08-28T09:31:49", "url": "https://files.pythonhosted.org/packages/a9/25/9b791e5711e66035c68fd9e325215e5a3127aae2ea9758e4d220a3f80cbb/autobahn-19.9.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1015679905f88a5f561f243f9530d143", "sha256": "17f4bd5adbe3fcb757c427867af2ef7d21786afdfc060b04fa9eb84f93e54ba8" }, "downloads": -1, "filename": "autobahn-19.9.1.tar.gz", "has_sig": false, "md5_digest": "1015679905f88a5f561f243f9530d143", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 613098, "upload_time": "2019-08-28T09:31:54", "url": "https://files.pythonhosted.org/packages/97/a8/e2b5c60fd63f4a1323e5463b05dca5efad0e7d6cb06b7f0a3fe9432eace9/autobahn-19.9.1.tar.gz" } ], "19.9.2": [ { "comment_text": "", "digests": { "md5": "c9b047d6de0ef0b6c9f9819f86569ce5", "sha256": "0a0af8804a2767308b4309abdba356191d3986b5cf3285144fa45bcda20520e8" }, "downloads": -1, "filename": "autobahn-19.9.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c9b047d6de0ef0b6c9f9819f86569ce5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 753957, "upload_time": "2019-08-29T20:54:18", "url": "https://files.pythonhosted.org/packages/08/e1/618bf5abb169ce1ed6574ddd05f68588ab1245e9aa0615d0437b47b2a5ee/autobahn-19.9.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9c2ca605f930616b822858349a58e8d9", "sha256": "985401e0af1c5f3fb59a209681ee878194c23fe88f865f6157679aa1db386724" }, "downloads": -1, "filename": "autobahn-19.9.2.tar.gz", "has_sig": false, "md5_digest": "9c2ca605f930616b822858349a58e8d9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 589920, "upload_time": "2019-08-29T20:54:22", "url": "https://files.pythonhosted.org/packages/f1/99/af285b10c5b00828d73e061c55ad1e2b07d456be10c00cd812dfe902ab5e/autobahn-19.9.2.tar.gz" } ], "19.9.3": [ { "comment_text": "", "digests": { "md5": "62527e20282c6a04fb828e2172f2b236", "sha256": "27688cbddd5545fc2ee2614ec8fa65119f1a2122606ce2ef7756392c33e3ec0f" }, "downloads": -1, "filename": "autobahn-19.9.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "62527e20282c6a04fb828e2172f2b236", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 770849, "upload_time": "2019-09-09T16:56:04", "url": "https://files.pythonhosted.org/packages/01/f3/42e681a0b1234f1ffdcaf548afe03685ede21ae259de2ea6ad60c83faead/autobahn-19.9.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "81f9c157fa1c770f05b6a11c5388e4a4", "sha256": "a24826ad0bcc35d32cb4576a092fa744e8b6738bd6320d2de857ad8a71df0bec" }, "downloads": -1, "filename": "autobahn-19.9.3.tar.gz", "has_sig": false, "md5_digest": "81f9c157fa1c770f05b6a11c5388e4a4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 603363, "upload_time": "2019-09-09T16:56:07", "url": "https://files.pythonhosted.org/packages/c5/7c/4942bb64748dd15af038d5cbb34b9ae85ffb05e2a46d99a9a79198dfdd58/autobahn-19.9.3.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "e1e340724d4f654b258cbc4a73c46601", "sha256": "7ab1e51a9c9bf0aa6ccbe765635b79b9a659019d38904fa3c2072670f097a25d" }, "downloads": -1, "filename": "autobahn-19.10.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e1e340724d4f654b258cbc4a73c46601", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 771955, "upload_time": "2019-09-30T12:42:50", "url": "https://files.pythonhosted.org/packages/4c/1e/619ab12c3cf4dfd251dcb6cbca9581fbb2e648bf80f68d7be4b4b6b99337/autobahn-19.10.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8900783822b570e0395c4bade08e0d51", "sha256": "734385b00547448b3f30a752cbfd2900d15924d77dc4a1699b8bce1ea8899f39" }, "downloads": -1, "filename": "autobahn-19.10.1.tar.gz", "has_sig": false, "md5_digest": "8900783822b570e0395c4bade08e0d51", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 605365, "upload_time": "2019-09-30T12:42:55", "url": "https://files.pythonhosted.org/packages/8d/bb/024c4e669f0b82bc895f95c10105156db0543648db8305390730c4078edf/autobahn-19.10.1.tar.gz" } ] }