From 4698fce6109d02690039fd74f06ceed95aebf8f1 Mon Sep 17 00:00:00 2001 From: Justin Su Date: Sat, 29 Mar 2025 02:32:08 -0400 Subject: [PATCH] docs: Add link to Event Hooks docs on Compatibility page --- docs/compatibility.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/compatibility.md b/docs/compatibility.md index 52e9389a79..832a2d2630 100644 --- a/docs/compatibility.md +++ b/docs/compatibility.md @@ -223,6 +223,6 @@ For both query params (`params=`) and form data (`data=`), `requests` supports s `requests` allows event hooks to mutate `Request` and `Response` objects. See [examples](https://requests.readthedocs.io/en/master/user/advanced/#event-hooks) given in the documentation for `requests`. -In HTTPX, event hooks may access properties of requests and responses, but event hook callbacks cannot mutate the original request/response. +In HTTPX, [event hooks](advanced/event-hooks.md) may access properties of requests and responses, but event hook callbacks cannot mutate the original request/response. If you are looking for more control, consider checking out [Custom Transports](advanced/transports.md#custom-transports).