Installation
Install the Torale Python SDK.
Requirements
- Python 3.9 or higher
- pip or uv package manager
Installation
Using pip
bash
pip install toraleUsing uv
bash
uv add toraleFrom Source
bash
git clone https://github.com/torale-ai/torale
cd torale/backend
uv syncVerify Installation
bash
python -c "import torale; print(torale.__version__)"Quick Test
python
from torale import Torale
# Initialize client
client = Torale(api_key="sk_...")
# Test connection by listing tasks
tasks = client.tasks.list()
print(f"Connected. Found {len(tasks)} tasks.")Next Steps
- Get started with Quickstart Guide
- Learn about Async Client
- View Examples
- Handle Errors