This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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> | |
""" |