Metadata-Version: 2.5
Name: dbsnap
Version: 1.0.0
Summary: A memory-safe, industrial-grade offline SQLite snapshot exporter to JSON and CSV.
Author-email: K Jogesh <jogeshk.ff2426@gmail.com>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Database
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# dbsnap 🗄️

An industrial-grade, zero-dependency, 100% offline Python library to stream SQLite table databases into clean, structured JSON or CSV files effortlessly.

## Installation
```bash
pip install dbsnap
```

## Quick Start
```python
from dbsnap import dbsnap

snapper = dbsnap("production_data.db")
result = snapper.snap(output_dir="./backups", format="json", chunk_size=1000)
print(f"Export complete: {result['total_rows_exported']} rows processed.")
```
