Metadata-Version: 2.1
Name: wsaccel
Version: 0.6.4
Summary: Accelerator for ws4py and AutobahnPython
Home-page: https://github.com/methane/wsaccel
Maintainer: Inada Naoki
Maintainer-email: songofacandy@gmail.com
License: Apache
Platform: any
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: Implementation :: CPython
License-File: LICENSE

WSAccell
=========

**NOTE: AutobahnPython and ws4py are not actively maintained. So I will stop this project too.
Please migrate to `Tornado <https://www.tornadoweb.org/en/stable/>`_ or
`websockets <https://websockets.readthedocs.io/en/stable/intro.html>`_.**


WSAccell is WebSocket accelerator for `AutobahnPython <https://autobahn.readthedocs.io/en/latest/>`_,
and `ws4py <https://github.com/Lawouach/WebSocket-for-Python>`_.

WSAccell replaces per-byte process in them with Cython version.

AutobahnPython beginning with version 0.6 automatically uses WSAccell if available.
Otherwise you can run-time patch supported WebSocket libraries using:

.. code-block:: python

    import wsaccel
    wsaccel.patch_autobahn()  # for autobahn.
    wsaccel.patch_ws4py()     # for ws4py.


test
----

wsaccel uses `pytest <https://pytest.org/>`_ for testing.

.. code-block:: console

    $ pip install pytest
    $ pytest tests
