Caution
Currently in development.
pip install xinfomaniak- Provide a simple and intuitive interface to interact with the Infomaniak API.
- Support both synchronous and asynchronous programming paradigms.
- Type annotations for better developer experience and code quality.
from infomaniak import Client
client = Client(token="your-token")import asyncio
from infomaniak import AsyncClient
client = AsyncClient(token="your-token")python -m venv .venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
pip install -e .[dev]