Skip to main content
The Platform Python SDK wraps authentication, workspaces, and issues in a few importable symbols.
The user manages team work; the agent creates workspaces and issues via the platform SDK.

How It Works

Quick Start

1

Simple Usage

Install and register a user:
2

With Configuration

Deploy the API server and connect with a stored token:

How It Works


Configuration Options


Best Practices

async with PlatformClient(...) reuses a connection pool for multiple calls.
After register() or login(), the client stores the JWT automatically.
Set PLATFORM_URL and PLATFORM_TOKEN in production — avoid hardcoded URLs.
Import __version__ at startup when you depend on specific API behaviour.

Platform SDK Client

Complete PlatformClient method reference

Platform Authentication

Register, login, and JWT management