Welcome to LaunchverseQuickstartDashboard Overview
Deployment GuideEnvironment Variables & SecretsCustom DomainsTeam ManagementPreview EnvironmentsRollback & PromoteWeb ShellHow Builds Work (Forge)
AuthenticationProjectsDeploymentsDomainsDatabasesError Codes & Conventions
JavaScript SDKPython SDK
Changelog
API Reference (Redoc)

Python SDK

The Launchverse Python SDK provides a typed client for the Launchverse API.

Installation

pip install launchverse-sdk

Usage

from launchverse import LaunchverseClient

client = LaunchverseClient(token='lvse_...')

List projects

projects = client.projects.list()

Get a deployment

deployment = client.deployments.get('deployment_id')

Async Support

import asyncio

from launchverse import AsyncLaunchverseClient

async def main():

client = AsyncLaunchverseClient(token='lvse_...')

projects = await client.projects.list()

print(projects)

asyncio.run(main())

Edit this page on GitHub↗