Parse response body as JSON and return Python objects. Returns native Python dicts, lists, strings, numbers, etc.
(self)
| 74 | return as_bytearray(buffer) |
| 75 | |
| 76 | async def json(self): |
| 77 | """ |
| 78 | Parse response body as JSON and return Python objects. |
| 79 | |
| 80 | Returns native Python dicts, lists, strings, numbers, etc. |
| 81 | """ |
| 82 | return json.loads(await self.text()) |
| 83 | |
| 84 | async def text(self): |
| 85 | """ |