From fba640976f4c5f43c8dbc0f8d322b7059e7d83cf Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Fri, 12 Oct 2018 09:04:33 -0400 Subject: [PATCH] gzip --- README.md | 2 +- docs/source/index.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0ff7fc8..bc1a6b0 100644 --- a/README.md +++ b/README.md @@ -98,7 +98,7 @@ The primary concept here is to bring the nicities that are brought forth from bo - I love Falcon's "every request and response is passed into to each view and mutated" methodology, especially `response.media`, and have used it here. In addition to supporting JSON, I have decided to support YAML as well, as Kubernetes is slowly taking over the world, and it uses YAML for all the things. Content-negotiation and all that. - **A built in testing client that uses the actual Requests you know and love**. - The ability to mount other WSGI apps easily. -- Automatic gzipped-responses (still working on that). +- Automatic gzipped-responses. - In addition to Falcon's `on_get`, `on_post`, etc methods, Responder features an `on_request` method, which gets called on every type of request, much like Requests. - WhiteNoise is built-in, for serving static files. - Waitress built-in as a production web server. I would have chosen Gunicorn, but it doesn't run on Windows. Plus, Waitress serves well to protect against slowloris attacks, making nginx unnecessary in production. diff --git a/docs/source/index.rst b/docs/source/index.rst index 8c14958..9db4edf 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -106,7 +106,7 @@ Ideas - I love Falcon's "every request and response is passed into to each view and mutated" methodology, especially `response.media`, and have used it here. In addition to supporting JSON, I have decided to support YAML as well, as Kubernetes is slowly taking over the world, and it uses YAML for all the things. Content-negotiation and all that. - **A built in testing client that uses the actual Requests you know and love**. - The ability to mount other WSGI apps easily. -- Automatic gzipped-responses (still working on that). +- Automatic gzipped-responses. - In addition to Falcon's ``on_get``, ``on_post``, etc methods, Responder features an `on_request` method, which gets called on every type of request, much like Requests. - WhiteNoise is built-in, for serving static files. - Waitress built-in as a production web server. I would have chosen Gunicorn, but it doesn't run on Windows. Plus, Waitress serves well to protect against slowloris attacks, making nginx unneccessary in production.