Skip to content

Instantly share code, notes, and snippets.

@mbaena
mbaena / snapshot_to_sqlite_stream.py
Created October 15, 2025 14:28
Tools to convert between SQLite databases and dqlite snapshots, including a streaming version for large files with optional LZ4 compression.
#!/usr/bin/env python3
"""
dqlite Snapshot to SQLite Converter (Streaming Version)
This version uses a streaming approach to handle large files
and automatically detect the correct snapshot format.
Usage:
python snapshot_to_sqlite_stream.py <snapshot_file> <output_dir>
"""