ivo
ivo

Reputation: 4211

Real-time SQLite and PostgreSQL bi-directional synchronization using python

Is there any python library that can keep a client-side SQLite database in sync with a server-side PostgreSQL database?

There are solutions for Java, such as Daffodil or SymmetricDS. Is there something similar for python?

Upvotes: 4

Views: 2889

Answers (1)

David Fraser
David Fraser

Reputation: 7449

SymmetricDS is a server-side solution for synchronization that gets triggered regardless of which language is being used to access the database. You should still be able to use that to synchronize the databases, while using Python libraries to actually query them. I would recommend sqlalchemy as a good database-independent query layer for Python.

Upvotes: 1

Related Questions