* The parameter for streaming requests was changed from ``prefetch`` to
``stream`` and the logic was inverted. In addition, ``stream`` is now
- required for chunked response reading.
+ required for raw response reading.
::
content = r.content
...
-You can further control the workflow by use of the :class:`Response.iter_content` and :class:`Response.iter_lines` methods.
+You can further control the workflow by use of the :class:`Response.iter_content` and :class:`Response.iter_lines` methods. Also you can read undecoded body from the underlying urllib3 :class:`urllib3.HTTPResponse` at :class:`Response.raw`.
Keep-Alive