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.
Files changed (86) hide show
  1. {python-socketio-5.11.2/src/python_socketio.egg-info → python_socketio-5.11.4}/PKG-INFO +1 -1
  2. {python-socketio-5.11.2 → python_socketio-5.11.4}/docs/intro.rst +6 -8
  3. {python-socketio-5.11.2 → python_socketio-5.11.4}/docs/server.rst +617 -491
  4. {python-socketio-5.11.2 → python_socketio-5.11.4}/pyproject.toml +1 -1
  5. {python-socketio-5.11.2 → python_socketio-5.11.4/src/python_socketio.egg-info}/PKG-INFO +1 -1
  6. {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/async_client.py +28 -3
  7. {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/async_manager.py +2 -1
  8. {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/async_namespace.py +2 -2
  9. {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/async_pubsub_manager.py +2 -1
  10. {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/async_server.py +3 -0
  11. {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/client.py +20 -1
  12. {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/manager.py +2 -1
  13. {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/namespace.py +2 -2
  14. {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/packet.py +1 -1
  15. {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/pubsub_manager.py +2 -1
  16. {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/server.py +3 -0
  17. {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/async/test_client.py +61 -0
  18. {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/async/test_manager.py +1 -1
  19. {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/async/test_pubsub_manager.py +16 -0
  20. {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/common/test_client.py +58 -0
  21. {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/common/test_manager.py +1 -1
  22. {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/common/test_pubsub_manager.py +16 -0
  23. {python-socketio-5.11.2 → python_socketio-5.11.4}/LICENSE +0 -0
  24. {python-socketio-5.11.2 → python_socketio-5.11.4}/MANIFEST.in +0 -0
  25. {python-socketio-5.11.2 → python_socketio-5.11.4}/README.md +0 -0
  26. {python-socketio-5.11.2 → python_socketio-5.11.4}/docs/Makefile +0 -0
  27. {python-socketio-5.11.2 → python_socketio-5.11.4}/docs/_static/README.md +0 -0
  28. {python-socketio-5.11.2 → python_socketio-5.11.4}/docs/_static/custom.css +0 -0
  29. {python-socketio-5.11.2 → python_socketio-5.11.4}/docs/api.rst +0 -0
  30. {python-socketio-5.11.2 → python_socketio-5.11.4}/docs/client.rst +0 -0
  31. {python-socketio-5.11.2 → python_socketio-5.11.4}/docs/conf.py +0 -0
  32. {python-socketio-5.11.2 → python_socketio-5.11.4}/docs/index.rst +0 -0
  33. {python-socketio-5.11.2 → python_socketio-5.11.4}/docs/make.bat +0 -0
  34. {python-socketio-5.11.2 → python_socketio-5.11.4}/setup.cfg +0 -0
  35. {python-socketio-5.11.2 → python_socketio-5.11.4}/src/python_socketio.egg-info/SOURCES.txt +0 -0
  36. {python-socketio-5.11.2 → python_socketio-5.11.4}/src/python_socketio.egg-info/dependency_links.txt +0 -0
  37. {python-socketio-5.11.2 → python_socketio-5.11.4}/src/python_socketio.egg-info/not-zip-safe +0 -0
  38. {python-socketio-5.11.2 → python_socketio-5.11.4}/src/python_socketio.egg-info/requires.txt +0 -0
  39. {python-socketio-5.11.2 → python_socketio-5.11.4}/src/python_socketio.egg-info/top_level.txt +0 -0
  40. {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/__init__.py +0 -0
  41. {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/admin.py +0 -0
  42. {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/asgi.py +0 -0
  43. {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/async_admin.py +0 -0
  44. {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/async_aiopika_manager.py +0 -0
  45. {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/async_redis_manager.py +0 -0
  46. {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/async_simple_client.py +0 -0
  47. {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/base_client.py +0 -0
  48. {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/base_manager.py +0 -0
  49. {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/base_namespace.py +0 -0
  50. {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/base_server.py +0 -0
  51. {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/exceptions.py +0 -0
  52. {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/kafka_manager.py +0 -0
  53. {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/kombu_manager.py +0 -0
  54. {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/middleware.py +0 -0
  55. {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/msgpack_packet.py +0 -0
  56. {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/redis_manager.py +0 -0
  57. {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/simple_client.py +0 -0
  58. {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/tornado.py +0 -0
  59. {python-socketio-5.11.2 → python_socketio-5.11.4}/src/socketio/zmq_manager.py +0 -0
  60. {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/__init__.py +0 -0
  61. {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/async/__init__.py +0 -0
  62. {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/async/helpers.py +0 -0
  63. {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/async/test_admin.py +0 -0
  64. {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/async/test_namespace.py +0 -0
  65. {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/async/test_server.py +0 -0
  66. {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/async/test_simple_client.py +0 -0
  67. {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/asyncio_web_server.py +0 -0
  68. {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/common/__init__.py +0 -0
  69. {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/common/test_admin.py +0 -0
  70. {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/common/test_middleware.py +0 -0
  71. {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/common/test_msgpack_packet.py +0 -0
  72. {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/common/test_namespace.py +0 -0
  73. {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/common/test_packet.py +0 -0
  74. {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/common/test_server.py +0 -0
  75. {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/common/test_simple_client.py +0 -0
  76. {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/performance/README.md +0 -0
  77. {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/performance/binary_packet.py +0 -0
  78. {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/performance/json_packet.py +0 -0
  79. {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/performance/namespace_packet.py +0 -0
  80. {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/performance/run.sh +0 -0
  81. {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/performance/server_receive.py +0 -0
  82. {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/performance/server_send.py +0 -0
  83. {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/performance/server_send_broadcast.py +0 -0
  84. {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/performance/text_packet.py +0 -0
  85. {python-socketio-5.11.2 → python_socketio-5.11.4}/tests/web_server.py +0 -0
  86. {python-socketio-5.11.2 → python_socketio-5.11.4}/tox.ini +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: python-socketio
3
- Version: 5.11.2
3
+ Version: 5.11.4
4
4
  Summary: Socket.IO server and client for Python
5
5
  Author-email: Miguel Grinberg <miguel.grinberg@gmail.com>
6
6
  Project-URL: Homepage, https://github.com/miguelgrinberg/python-socketio
@@ -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 1.x and 2.x releases. Work to support release 3.x is in
105
- progress.
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 versions 1.x and 2.x. Work to support the 3.x
185
- release is in progress.
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
- `sanic <http://sanic.readthedocs.io/>`_ and `tornado <http://www.tornadoweb.org/>`_
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