will provide cookie persistence, and allows you to apply configuration across
all outgoing requests.
+A Client instance is equivalent to a Session instance in `requests`.
+
```python
>>> client = httpx.Client()
>>> r = client.get('https://example.org/')
## Advanced Usage
-!!! warning
- TODO
+### requests.Session
+The HTTPX equivalent of `requests.Session` is `httpx.Client`.
+
+```python
+session = requests.Session(**kwargs)
+```
+
+is equivalent to
+
+```python
+client = httpx.Client(**kwargs)
+```
+
+More detailed documentation and usage of `Client` can be found in [Advanced Usage](advanced.md).