From 15f925336c6bad2f5b2711553a6b6763923175de Mon Sep 17 00:00:00 2001 From: Tom Christie Date: Mon, 15 Jan 2024 13:01:04 +0000 Subject: [PATCH] Drop outdated section (#3057) --- docs/advanced/transports.md | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/docs/advanced/transports.md b/docs/advanced/transports.md index 135797d5cd..fdc58b0841 100644 --- a/docs/advanced/transports.md +++ b/docs/advanced/transports.md @@ -78,18 +78,6 @@ with httpx.Client(transport=transport, base_url="http://testserver") as client: ... ``` -## urllib3 transport - -This [public gist](https://gist.github.com/florimondmanca/d56764d78d748eb9f73165da388e546e) provides a transport that uses the excellent [`urllib3` library](https://urllib3.readthedocs.io/en/latest/), and can be used with the sync `Client`... - -```pycon ->>> import httpx ->>> from urllib3_transport import URLLib3Transport ->>> client = httpx.Client(transport=URLLib3Transport()) ->>> client.get("https://example.org") - -``` - ## Custom transports A transport instance must implement the low-level Transport API, which deals