Documentation

Learn how to integrate LOX Backup with your applications and infrastructure.

Quick Start

Get started with LOX Backup in minutes. Here's a quick example using our Python SDK:

1. Install the SDK
pip install lox-backup
2. Upload your first backup
from lox_backup import LoxClient

client = LoxClient(api_key="your-api-key")

# Upload a backup
backup = client.backups.upload(
    file_path="backup.tar.gz",
    name="my-first-backup",
    tags=["example"]
)

print(f"Backup created: {backup.uuid}")