File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -136,7 +136,7 @@ As well as these optional installs:
136136* ` rich ` - Rich terminal support. * (Optional, with ` httpx[cli] ` )*
137137* ` click ` - Command line client support. * (Optional, with ` httpx[cli] ` )*
138138* ` brotli ` or ` brotlicffi ` - Decoding for "brotli" compressed responses. * (Optional, with ` httpx[brotli] ` )*
139- * ` zstandard ` - Decoding for "zstd" compressed responses. * (Optional, with ` httpx[zstd] ` )*
139+ * ` zstandard ` - Decoding for "zstd" compressed responses before Python 3.14 . * (Optional, with ` httpx[zstd] ` )*
140140
141141A huge amount of credit is due to ` requests ` for the API layout that
142142much of this work follows, as well as to ` urllib3 ` for plenty of design
Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ As well as these optional installs:
119119* ` rich ` - Rich terminal support. * (Optional, with ` httpx[cli] ` )*
120120* ` click ` - Command line client support. * (Optional, with ` httpx[cli] ` )*
121121* ` brotli ` or ` brotlicffi ` - Decoding for "brotli" compressed responses. * (Optional, with ` httpx[brotli] ` )*
122- * ` zstandard ` - Decoding for "zstd" compressed responses. * (Optional, with ` httpx[zstd] ` )*
122+ * ` zstandard ` - Decoding for "zstd" compressed responses before Python 3.14 . * (Optional, with ` httpx[zstd] ` )*
123123
124124A huge amount of credit is due to ` requests ` for the API layout that
125125much of this work follows, as well as to ` urllib3 ` for plenty of design
Original file line number Diff line number Diff line change @@ -100,8 +100,9 @@ b'<!doctype html>\n<html>\n<head>\n<title>Example Domain</title>...'
100100
101101Any ` gzip ` and ` deflate ` HTTP response encodings will automatically
102102be decoded for you. If ` brotlipy ` is installed, then the ` brotli ` response
103- encoding will be supported. If ` zstandard ` is installed, then ` zstd `
104- response encodings will also be supported.
103+ encoding will be supported. The ` zstd ` response encoding is supported by
104+ default on Python 3.14 and later, and optionally available on earlier Python
105+ versions with ` zstandard ` installed.
105106
106107For example, to create an image from binary data returned by a request, you can use the following code:
107108
You can’t perform that action at this time.
0 commit comments