python-socketio 5.11.2__tar.gz → 5.11.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {python-socketio-5.11.2/src/python_socketio.egg-info → python_socketio-5.11.4}/PKG-INFO +1 -1
- {python-socketio-5.11.2 → python_socketio-5.11.4}/docs/intro.rst +6 -8
- {python-socketio-5.11.2 → python_socketio-5.11.4}/docs/server.rst +617 -491
- {python-socketio-5.11.2 → python_socketio-5.11.4}/pyproject.toml +1 -1
- {python-socketio-5.11.2 → python_socketio-5.11.4/src/python_socketio.egg-info}/PKG-INFO +1 -1
- {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/async_client.py +28 -3
- {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/async_manager.py +2 -1
- {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/async_namespace.py +2 -2
- {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/async_pubsub_manager.py +2 -1
- {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/async_server.py +3 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/client.py +20 -1
- {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/manager.py +2 -1
- {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/namespace.py +2 -2
- {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/packet.py +1 -1
- {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/pubsub_manager.py +2 -1
- {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/server.py +3 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/async/test_client.py +61 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/async/test_manager.py +1 -1
- {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/async/test_pubsub_manager.py +16 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/common/test_client.py +58 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/common/test_manager.py +1 -1
- {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/common/test_pubsub_manager.py +16 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/LICENSE +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/MANIFEST.in +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/README.md +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/docs/Makefile +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/docs/_static/README.md +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/docs/_static/custom.css +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/docs/api.rst +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/docs/client.rst +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/docs/conf.py +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/docs/index.rst +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/docs/make.bat +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/setup.cfg +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/src/python_socketio.egg-info/SOURCES.txt +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/src/python_socketio.egg-info/dependency_links.txt +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/src/python_socketio.egg-info/not-zip-safe +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/src/python_socketio.egg-info/requires.txt +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/src/python_socketio.egg-info/top_level.txt +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/__init__.py +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/admin.py +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/asgi.py +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/async_admin.py +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/async_aiopika_manager.py +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/async_redis_manager.py +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/async_simple_client.py +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/base_client.py +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/base_manager.py +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/base_namespace.py +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/base_server.py +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/exceptions.py +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/kafka_manager.py +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/kombu_manager.py +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/middleware.py +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/msgpack_packet.py +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/redis_manager.py +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/simple_client.py +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/tornado.py +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/zmq_manager.py +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/__init__.py +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/async/__init__.py +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/async/helpers.py +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/async/test_admin.py +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/async/test_namespace.py +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/async/test_server.py +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/async/test_simple_client.py +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/asyncio_web_server.py +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/common/__init__.py +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/common/test_admin.py +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/common/test_middleware.py +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/common/test_msgpack_packet.py +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/common/test_namespace.py +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/common/test_packet.py +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/common/test_server.py +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/common/test_simple_client.py +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/performance/README.md +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/performance/binary_packet.py +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/performance/json_packet.py +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/performance/namespace_packet.py +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/performance/run.sh +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/performance/server_receive.py +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/performance/server_send.py +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/performance/server_send_broadcast.py +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/performance/text_packet.py +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/web_server.py +0 -0
- {python-socketio-5.11.2 → python_socketio-5.11.4}/tox.ini +0 -0
|
@@ -101,9 +101,8 @@ Client Features
|
|
|
101
101
|
---------------
|
|
102
102
|
|
|
103
103
|
- Can connect to other Socket.IO servers that are compatible with the
|
|
104
|
-
JavaScript Socket.IO
|
|
105
|
-
|
|
106
|
-
- Compatible with Python 3.6+.
|
|
104
|
+
JavaScript Socket.IO reference server.
|
|
105
|
+
- Compatible with Python 3.8+.
|
|
107
106
|
- Two versions of the client, one for standard Python and another for
|
|
108
107
|
asyncio.
|
|
109
108
|
- Uses an event-based architecture implemented with decorators that
|
|
@@ -181,9 +180,8 @@ Server Features
|
|
|
181
180
|
---------------
|
|
182
181
|
|
|
183
182
|
- Can connect to servers running other Socket.IO clients that are compatible
|
|
184
|
-
with the JavaScript client
|
|
185
|
-
|
|
186
|
-
- Compatible with Python 3.6+.
|
|
183
|
+
with the JavaScript reference client.
|
|
184
|
+
- Compatible with Python 3.8+.
|
|
187
185
|
- Two versions of the server, one for standard Python and another for
|
|
188
186
|
asyncio.
|
|
189
187
|
- Supports large number of clients even on modest hardware due to being
|
|
@@ -195,8 +193,8 @@ Server Features
|
|
|
195
193
|
- Can be integrated with WSGI applications written in frameworks such as Flask, Django,
|
|
196
194
|
etc.
|
|
197
195
|
- Can be integrated with `aiohttp <http://aiohttp.readthedocs.io/>`_,
|
|
198
|
-
`
|
|
199
|
-
``asyncio`` applications.
|
|
196
|
+
`FastAPI <https://fastapi.tiangolo.com/>`_, `sanic <http://sanic.readthedocs.io/>`_
|
|
197
|
+
and `tornado <http://www.tornadoweb.org/>`_ ``asyncio`` applications.
|
|
200
198
|
- Broadcasting of messages to all connected clients, or to subsets of them
|
|
201
199
|
assigned to "rooms".
|
|
202
200
|
- Optional support for multiple servers, connected through a messaging queue
|