Browse Source
Updated documentation with new Engine.IO client options
pull/372/head
Miguel Grinberg
6 years ago
No known key found for this signature in database
GPG Key ID: 36848B262DF5F06C
2 changed files with
12 additions and
0 deletions
-
socketio/asyncio_client.py
-
socketio/client.py
|
|
@ -49,6 +49,12 @@ class AsyncClient(client.Client): |
|
|
|
|
|
|
|
The Engine.IO configuration supports the following settings: |
|
|
|
|
|
|
|
:param request_timeout: A timeout in seconds for requests. The default is |
|
|
|
5 seconds. |
|
|
|
:param ssl_verify: ``True`` to verify SSL certificates, or ``False`` to |
|
|
|
skip SSL certificate verification, allowing |
|
|
|
connections to servers with self signed certificates. |
|
|
|
The default is ``True``. |
|
|
|
:param engineio_logger: To enable Engine.IO logging set to ``True`` or pass |
|
|
|
a logger object to use. To disable logging set to |
|
|
|
``False``. The default is ``False``. |
|
|
|
|
|
@ -65,6 +65,12 @@ class Client(object): |
|
|
|
|
|
|
|
The Engine.IO configuration supports the following settings: |
|
|
|
|
|
|
|
:param request_timeout: A timeout in seconds for requests. The default is |
|
|
|
5 seconds. |
|
|
|
:param ssl_verify: ``True`` to verify SSL certificates, or ``False`` to |
|
|
|
skip SSL certificate verification, allowing |
|
|
|
connections to servers with self signed certificates. |
|
|
|
The default is ``True``. |
|
|
|
:param engineio_logger: To enable Engine.IO logging set to ``True`` or pass |
|
|
|
a logger object to use. To disable logging set to |
|
|
|
``False``. The default is ``False``. |
|
|
|