Documentation
Learn how to integrate LOX Backup with your applications and infrastructure.
CMS & ERP Plugins
One-click backup for WordPress, WooCommerce, PrestaShop, Drupal, and Odoo ERP.
SDKs & CLI
Official SDKs for Python and Node.js, plus a powerful CLI tool.
DevOps
Integrate backups into your CI/CD pipelines with GitHub Actions and GitLab CI.
Database Agents
Containerized agents for MySQL and PostgreSQL backups.
Security & Compliance
Legal Hold, audit trails, data residency, and compliance features.
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}")