From 96cf8ee275fb3fd2e25c9dd1490d850ec0044c6d Mon Sep 17 00:00:00 2001 From: Andrew Burrows Date: Wed, 29 Nov 2017 06:16:17 +0000 Subject: [PATCH] Update docs now gevent-websocket is available for python3 (#599) --- docs/index.rst | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/docs/index.rst b/docs/index.rst index 2d03593a..395bec0b 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -31,11 +31,10 @@ choices: - `gevent `_ is supported in a number of different configurations. The long-polling transport is fully supported with the gevent package, but unlike eventlet, gevent does not have native WebSocket - support. To add support for WebSocket there are currently two options. The - `gevent-websocket `_ - package adds WebSocket support to gevent, but unfortunately this package is - current only available for Python 2. The other alternative is to use the - `uWSGI `_ web server, which + support. To add support for WebSocket there are currently two options. + Installing the `gevent-websocket `_ + package adds WebSocket support to gevent or one can use the `uWSGI + `_ web server, which comes with WebSocket functionality. The use of gevent is also a performant option, but slightly lower than eventlet. - The Flask development server based on Werkzeug can be used as well, with the