From 814ff84ec310ce208522c8fd00302fdc1a689f44 Mon Sep 17 00:00:00 2001 From: Miguel Grinberg Date: Mon, 3 Jun 2019 12:35:19 +0100 Subject: [PATCH] Move python-engineio dependency to versions 3.8 and up --- docs/server.rst | 30 ++++++++++++++++++++++++------ setup.py | 2 +- tests/common/test_middleware.py | 4 ++-- 3 files changed, 27 insertions(+), 9 deletions(-) diff --git a/docs/server.rst b/docs/server.rst index 4902db0..de8d389 100644 --- a/docs/server.rst +++ b/docs/server.rst @@ -59,7 +59,7 @@ Socket.IO servers to integrate easily into existing WSGI or ASGI applications:: Serving Static Files -------------------- -This package offers the option to configure the serving of static files. This +The Engine.IO server can be configured to serve static files to clients. This is particularly useful to deliver HTML, CSS and JavaScript files to clients when this package is used without a companion web framework. @@ -91,20 +91,38 @@ If desired, an explicit content type for a static file can be given as follows:: '/': {'filename': 'latency.html', 'content_type': 'text/plain'}, } -Finally, it is also possible to configure an entire directory in a single rule, -so that all the files in it are served as static files:: +It is also possible to configure an entire directory in a single rule, so that all +the files in it are served as static files:: static_files = { '/static': './public', - '/': './public/index.html', } In this example any files with URLs starting with ``/static`` will be served directly from the ``public`` folder in the current directory, so for example, the URL ``/static/index.html`` will return local file ``./public/index.html`` and the URL ``/static/css/styles.css`` will return local file -``./public/css/styles.css``. The second rule creates a default mapping for the -``index.html`` file when the root URL is requested. +``./public/css/styles.css``. + +If a URL that ends in a ``/`` is requested, then a default filename of +``index.html`` is appended to it. In the previous example, a request for the +``/static/`` URL would return local file ``./public/index.html``. The default +filename to serve for slash-ending URLs can be set in the static files +dictionary with an empty key:: + + static_files = { + '/static': './public', + '': 'image.gif', + } + +With this configuration, a request for ``/static/`` would return +local file ``./public/image.gif``. A non-standard content type can also be +specified if needed:: + + static_files = { + '/static': './public', + '': {'filename': 'image.gif', 'content_type': 'text/plain'}, + } The static file configuration dictionary is given as the ``static_files`` argument to the ``socketio.WSGIApp`` or ``socketio.ASGIApp`` classes:: diff --git a/setup.py b/setup.py index 10c4076..f5bc044 100755 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ setup( platforms='any', install_requires=[ 'six>=1.9.0', - 'python-engineio>=3.2.0' + 'python-engineio>=3.8.0' ], extras_require={ 'client': [ diff --git a/tests/common/test_middleware.py b/tests/common/test_middleware.py index 3a05a3d..84a0ffc 100644 --- a/tests/common/test_middleware.py +++ b/tests/common/test_middleware.py @@ -37,6 +37,6 @@ class TestMiddleware(unittest.TestCase): environ = {'PATH_INFO': '/foo/bar'} start_response = mock.MagicMock() r = m(environ, start_response) - self.assertEqual(r, ['Not Found']) + self.assertEqual(r, [b'Not Found']) start_response.assert_called_once_with( - "404 Not Found", [('Content-type', 'text/plain')]) + "404 Not Found", [('Content-Type', 'text/plain')])