/usr/lib/python3/dist-packages/wsaccel-0.6.2.egg-info/PKG-INFO is in python3-wsaccel 0.6.2-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | 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-Content-Type: UNKNOWN
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
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.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: Implementation :: CPython
|