SyncDBΒΆ
Python ETL helper for moving tabular data between MSSQL, PostgreSQL, MySQL, and local files (CSV, Parquet, Excel, Pickle), with automatic schema creation, schema evolution, and batch progress reporting.
from syncdb import DatabaseConfig, SyncDB
src = DatabaseConfig(engine="mssql", connection_string="...")
dst = DatabaseConfig(engine="postgresql", connection_string="...")
sync = SyncDB(source=src, target=dst)
sync.sync_tables({
"orders": {
"source": "dbo.orders",
"destination": "public.orders",
"mode": "append",
"primary_key": ["order_id"],
}
})
Getting Started
User Guide
API Reference
Development