Get response body as a JavaScript Blob object. Returns the raw JS Blob for use with other JS APIs.
(self)
| 57 | return memoryview(as_bytearray(buffer)) |
| 58 | |
| 59 | async def blob(self): |
| 60 | """ |
| 61 | Get response body as a JavaScript Blob object. |
| 62 | |
| 63 | Returns the raw JS Blob for use with other JS APIs. |
| 64 | """ |
| 65 | return await self._response.blob() |
| 66 | |
| 67 | async def bytearray(self): |
| 68 | """ |