Metadata-Version: 1.1
Name: wsaccel
Version: 0.6.2
Summary: Accelerator for ws4py and AutobahnPython
Home-page: https://github.com/methane/wsaccel
Author: INADA Naoki
Author-email: songofacandy@gmail.com
License: Apache
Description: WSAccell
        =========
        
        WSAccell is WebSocket accelerator for `AutobahnPython <http://autobahn.ws/python>`_,
        `ws4py <https://github.com/Lawouach/WebSocket-for-Python>`_ and
        `Tornado <http://www.tornadoweb.org/>`_.
        
        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.
            wsaccel.patch_tornado()   # for Tornado
        
        test
        ----
        
        wsaccel uses `pytest <https://pytest.org/>`_ for testing.
        
        .. code-block:: console
        
            $ pip install pytest
            $ py.test tests
        
Platform: any
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: Implementation :: CPython
