summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorNate Prewitt <nate.prewitt@gmail.com>2020-11-16 17:31:39 -0800
committerGitHub <noreply@github.com>2020-11-16 17:31:39 -0800
commit962c8986ca211ad70b1653e9d6a0e31fa8d8d4f9 (patch)
tree0239c6348d7e889e49fbe928e35d51c8725c632f /docs
parent28cc1d237b8922a2dcbd1ed95782a7f1751f475b (diff)
parentc3280d7844cc88693b1e97d45f704945cb55f29c (diff)
downloadpython-requests-962c8986ca211ad70b1653e9d6a0e31fa8d8d4f9.tar.gz
Merge pull request #5594 from icfly2/patch-1
Update advanced.rst
Diffstat (limited to 'docs')
-rw-r--r--docs/user/advanced.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/user/advanced.rst b/docs/user/advanced.rst
index e2f59b5e..7cb872e4 100644
--- a/docs/user/advanced.rst
+++ b/docs/user/advanced.rst
@@ -981,12 +981,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`_, `requests-futures`_, and `requests-async`_.
+Some excellent examples are `requests-threads`_, `grequests`_, `requests-futures`_, and `httpx`_.
.. _`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
+.. _`httpx`: https://github.com/encode/httpx
Header Ordering
---------------