- `max_keepalive`, number of allowable keep-alive connections, or `None` to always
allow. (Defaults 20)
-- `max_connections`, maximum number of allowable connections, or` None` for no limits.
+- `max_connections`, maximum number of allowable connections, or `None` for no limits.
(Default 100)
+- `keepalive_expiry`, time limit on idle keep-alive connections in seconds, or `None` for no limits. (Default 5)
```python
limits = httpx.Limits(max_keepalive_connections=5, max_connections=10)
* **max_keepalive_connections** - Allow the connection pool to maintain
keep-alive connections below this point. Should be less than or equal
to `max_connections`.
+ * **keepalive_expiry** - Time limit on idle keep-alive connections in seconds.
"""
def __init__(