Skip to content

Commit 15f9253

Browse files
authored
Drop outdated section (#3057)
1 parent d76607b commit 15f9253

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

docs/advanced/transports.md

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -78,18 +78,6 @@ with httpx.Client(transport=transport, base_url="http://testserver") as client:
7878
...
7979
```
8080

81-
## urllib3 transport
82-
83-
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`...
84-
85-
```pycon
86-
>>> import httpx
87-
>>> from urllib3_transport import URLLib3Transport
88-
>>> client = httpx.Client(transport=URLLib3Transport())
89-
>>> client.get("https://example.org")
90-
<Response [200 OK]>
91-
```
92-
9381
## Custom transports
9482

9583
A transport instance must implement the low-level Transport API, which deals

0 commit comments

Comments
 (0)