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 ToraleClient
# Initialize client
client = ToraleClient(api_key="your-api-key")
# Test connection
user = client.auth.me()
print(f"Authenticated as: {user.email}")Next Steps
- Get started with Quickstart Guide
- Learn about Async Client
- View Examples
- Handle Errors