Version 3.7.0
3.7.0 (2024-06-24)
Added
- TransferProgress tracking in Response when downloading using
stream=True
based on the Content-Length. (#127)
There's no easy way to track the "real" amount of bytes consumed using "iter_content" when the remote is
sending a compressed body. This change makes it possible to track the amount of bytes consumed.
TheResponse
object now contain a property nameddownload_progress
that is eitherNone
or aTransferProgress
object. - HTTP/2 with prior knowledge over TLS or via an unencrypted connection.
disable_http1
toggle is now available through yourSession
constructor.
In consequence, you may leverage all HTTP/2 capabilities like multiplexing using a plain (e.g. non-TLS) socket.
You may enable/disable any protocols per Session object (but not all of them at once!).
In non-TLS connections, you have to keep one of HTTP/1.1 or HTTP/2 enabled.
Otherwise, one of HTTP/1.1, HTTP/2 or HTTP/3. ARuntimeError
may be thrown if no protocol can be used in a
given context.
Changed
- Relax main API constraint in get, head, options and delete methods / functions by accepting kwargs.
- urllib3-future lower bound version is raised to 2.8.900