> ## Documentation Index
> Fetch the complete documentation index at: https://docs.notte.cc/llms.txt
> Use this file to discover all available pages before exploring further.

# Response

> The :class:`Response <Response>` object, which contains a

server's response to an HTTP request

## Methods

### close

```python theme={null}
close()
```

Releases the connection back to the pool

***

### iter\_content

```python theme={null}
iter_content(chunk_size = 1, decode_unicode = False)
```

Iterates over the response data

***

### iter\_lines

```python theme={null}
iter_lines(chunk_size = 512, decode_unicode = False, delimiter = None)
```

Iterates over the response data, one line at a time

***

### json

```python theme={null}
json(kwargs)
```

Decodes the JSON response body (if any) as a Python object

***

### raise\_for\_status

```python theme={null}
raise_for_status()
```

Raises :class:`HTTPError`, if one occurred

***

## Module

`requests.models`
