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

# Python SDK

> Integrate Versive into your Python applications

## Installation

Install the Versive Python SDK using pip:

```bash theme={null}
pip install versive-sdk
```

## Initialization

Initialize the client with your API key:

```python theme={null}
from versive import Versive

client = Versive(api_key="YOUR_API_KEY")
```

## Usage Example

### List Studies

```python theme={null}
studies = client.studies.list()
for study in studies:
    print(study.title)
```
