summaryrefslogtreecommitdiff
path: root/docs/user
diff options
context:
space:
mode:
authorTom Christie <tom@tomchristie.com>2019-03-27 10:09:19 +0000
committerGitHub <noreply@github.com>2019-03-27 10:09:19 +0000
commit6f6d0164a9eb73539ab6e5f6124006a6ddf1bc2f (patch)
tree0686a983ed36cef4f4e26b1386ccd8858fe55604 /docs/user
parenta345b776fb2cf67d1a1810349e71fd60a83f53eb (diff)
downloadpython-requests-6f6d0164a9eb73539ab6e5f6124006a6ddf1bc2f.tar.gz
Add `requests-async` link to "non-blocking" docs.
Links to https://github.com/encode/requests-async for an asyncio non-blocking option.
Diffstat (limited to 'docs/user')
-rw-r--r--docs/user/advanced.rst3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/user/advanced.rst b/docs/user/advanced.rst
index 9bad3909..f1b7460d 100644
--- a/docs/user/advanced.rst
+++ b/docs/user/advanced.rst
@@ -976,11 +976,12 @@ response at a time. However, these calls will still block.
If you are concerned about the use of blocking IO, there are lots of projects
out there that combine Requests with one of Python's asynchronicity frameworks.
-Some excellent examples are `requests-threads`_, `grequests`_, and `requests-futures`_.
+Some excellent examples are `requests-threads`_, `grequests`_, `requests-futures`_, and `requests-async`_.
.. _`requests-threads`: https://github.com/requests/requests-threads
.. _`grequests`: https://github.com/kennethreitz/grequests
.. _`requests-futures`: https://github.com/ross/requests-futures
+.. _`requests-async`: https://github.com/encode/requests-async
Header Ordering
---------------