# aiohttp.client_exceptions.ClientResponseError: Response not ready, please use await

- **ID:** `python/aiohttp-client-response-not-ready`
- **Domain:** python
- **Category:** runtime_error
- **Verification:** ai_generated
- **Fix Rate:** 80%

## Root Cause

Accessing response attributes (e.g., status, text) without awaiting them, as aiohttp responses are coroutine-based.

## Version Compatibility

| Version | Status | Introduced | Deprecated |
|---------|--------|------------|------------|
| 3.7 | active | — | — |
| 3.8 | active | — | — |
| 3.9 | active | — | — |

## Workarounds

1. **** (100% success)
   ```
   async with session.get(url) as resp: data = await resp.text()
   ```
2. **** (95% success)
   ```
   data = await resp.content.read()
   ```

## Dead Ends

- **** — aiohttp responses are not futures; .result() doesn't exist and causes AttributeError. (95% fail)
- **** — Delays don't guarantee the response is ready and waste time; the coroutine must be awaited. (70% fail)
