When using the python module requests
to perform requests you can have the response in various formats (according to the documentation):
- text: Content of the response, in unicode.
- content: Content of the response, in bytes.
But in some other examples (like here) there is also a property named raw
, which is not defined in the documentation.
So what does raw
mean?