Installation
Requirements
- Python 3.9 or higher
- A Python package manager (pip, uv, or similar)
- A Thymia API key (contact us for access)
Install from PyPI
Or with uv:
Configuration
Set your API key as an environment variable:
Or pass it directly to the client:
from thymia_sentinel import SentinelClient
sentinel = SentinelClient(
api_key="your-api-key-here",
# ... other config
)
Framework-Specific Installation
For framework integrations, install the example dependencies:
Verify Installation
from thymia_sentinel import SentinelClient, __version__
print(f"thymia-sentinel version: {__version__}")
Development Installation
To install from source for development: