The HTTP request body as a seek-able file-like object. Depending on :attr:`MEMFILE_MAX`, this is either a temporary file or a :class:`io.BytesIO` instance. Accessing this property for the first time reads and replaces the ``wsgi.input`` environ variable.
(self)
| 1758 | |
| 1759 | @property |
| 1760 | def body(self): |
| 1761 | """ The HTTP request body as a seek-able file-like object. Depending on |
| 1762 | :attr:`MEMFILE_MAX`, this is either a temporary file or a |
| 1763 | :class:`io.BytesIO` instance. Accessing this property for the first |
| 1764 | time reads and replaces the ``wsgi.input`` environ variable. |
| 1765 | Subsequent accesses just do a `seek(0)` on the file object. """ |
| 1766 | self._body.seek(0) |
| 1767 | return self._body |
| 1768 | |
| 1769 | @property |
| 1770 | def chunked(self): |