]> git.ipfire.org Git - thirdparty/httpx.git/commitdiff
Fix doc links for making requests directly to WSGI/ASGI apps (#3186)
authorKien Dang <kiend@pm.me>
Thu, 2 May 2024 10:07:09 +0000 (18:07 +0800)
committerGitHub <noreply@github.com>
Thu, 2 May 2024 10:07:09 +0000 (11:07 +0100)
README.md
docs/index.md

index bcba1bb76b464133081f7c2fdfda59a5863a201e..d5d21487133816b7c4bdf45b2ee8b98b96895690 100644 (file)
--- a/README.md
+++ b/README.md
@@ -66,7 +66,7 @@ HTTPX builds on the well-established usability of `requests`, and gives you:
 * An integrated command-line client.
 * HTTP/1.1 [and HTTP/2 support](https://www.python-httpx.org/http2/).
 * Standard synchronous interface, but with [async support if you need it](https://www.python-httpx.org/async/).
-* Ability to make requests directly to [WSGI applications](https://www.python-httpx.org/advanced/#calling-into-python-web-apps) or [ASGI applications](https://www.python-httpx.org/async/#calling-into-python-web-apps).
+* Ability to make requests directly to [WSGI applications](https://www.python-httpx.org/advanced/transports/#wsgi-transport) or [ASGI applications](https://www.python-httpx.org/advanced/transports/#asgi-transport).
 * Strict timeouts everywhere.
 * Fully type annotated.
 * 100% test coverage.
index 387e85047c0b4d596b15cc7690d92523b2f19d5c..c2210bc74f6ab13509fa3ab555dc4549a82bbb93 100644 (file)
@@ -68,7 +68,7 @@ HTTPX builds on the well-established usability of `requests`, and gives you:
 * A broadly [requests-compatible API](compatibility.md).
 * Standard synchronous interface, but with [async support if you need it](async.md).
 * HTTP/1.1 [and HTTP/2 support](http2.md).
-* Ability to make requests directly to [WSGI applications](async.md#calling-into-python-web-apps) or [ASGI applications](async.md#calling-into-python-web-apps).
+* Ability to make requests directly to [WSGI applications](advanced/transports.md#wsgi-transport) or [ASGI applications](advanced/transports.md#asgi-transport).
 * Strict timeouts everywhere.
 * Fully type annotated.
 * 100% test coverage.