From 7c32b379aeeafdb4d6e24e8695734c985753a9d7 Mon Sep 17 00:00:00 2001 From: Miguel Grinberg Date: Tue, 22 Oct 2019 16:09:28 +0100 Subject: [PATCH] Updated documentation with new Engine.IO client options --- socketio/asyncio_client.py | 6 ++++++ socketio/client.py | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/socketio/asyncio_client.py b/socketio/asyncio_client.py index 1ec3660..dd8caf3 100644 --- a/socketio/asyncio_client.py +++ b/socketio/asyncio_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``. diff --git a/socketio/client.py b/socketio/client.py index 7ab64ed..0751c29 100644 --- a/socketio/client.py +++ b/socketio/client.py @@ -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``.