From bc6f95877fe4c0fd2ddf1ea03faf835d40e980ec Mon Sep 17 00:00:00 2001 From: Dmitry Erlikh Date: Sat, 14 Nov 2020 14:34:24 +0100 Subject: [PATCH] Update docs --- docs/glossary.rst | 8 ++++++++ docs/index.rst | 6 ++++++ 2 files changed, 14 insertions(+) diff --git a/docs/glossary.rst b/docs/glossary.rst index bc5e1169c33..6e1ad245c0e 100644 --- a/docs/glossary.rst +++ b/docs/glossary.rst @@ -27,6 +27,14 @@ https://pypi.python.org/pypi/asyncio/ + brotlipy + + This library contains Python bindings for the reference Brotli + encoder/decoder. This allows Python software to use the Brotli + compression algorithm directly from Python code. + + https://pypi.org/project/brotlipy/ + callable Any object that can be called. Use :func:`callable` to check diff --git a/docs/index.rst b/docs/index.rst index 3e6554fe029..92e15317fc9 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -168,6 +168,12 @@ Dependencies $ pip install aiodns +- *Optional* :term:`brotlipy` for Brotli client compression support. + + .. code-block:: bash + + $ pip install brotlipy + Communication channels ======================