Returns an object that may be used to stream the request content.
(self)
| 200 | |
| 201 | @property |
| 202 | def stream(self): |
| 203 | """ |
| 204 | Returns an object that may be used to stream the request content. |
| 205 | """ |
| 206 | if not _hasattr(self, '_stream'): |
| 207 | self._load_stream() |
| 208 | return self._stream |
| 209 | |
| 210 | @property |
| 211 | def query_params(self): |
nothing calls this directly
no test coverage detected