Developer Platform1 min read

Python SDK

The Valstorm Python SDK provides a typed and idiomatic way to interact with the Valstorm API from your Python applications.

Installation

Install the SDK using pip:

BASH
pip install valstorm-api

Basic Usage

Initialize the client with your API token:

PYTHON
from valstorm_api import ValstormClient client = ValstormClient(token="your_access_token") # Fetch records from a collection records = client.records.list(collection_name="contact") for record in records: print(record.name)

Advanced Features

The SDK supports full CRUD operations, schema management, and real-time event listening via WebSockets.