MCPcopy
hub / github.com/encode/django-rest-framework / stream

Method stream

rest_framework/request.py:202–208  ·  view source on GitHub ↗

Returns an object that may be used to stream the request content.

(self)

Source from the content-addressed store, hash-verified

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):

Callers

nothing calls this directly

Calls 2

_load_streamMethod · 0.95
_hasattrFunction · 0.85

Tested by

no test coverage detected