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

Is there any python library that can support the client side SQLite database in synchronization with the PostgreSQL server database?

There are Java solutions like Daffodil or SymmetricDS. Is there something similar for python?

+3
source share
1 answer

SymmetricDS is a server-side synchronization solution that runs regardless of which language is used to access the database. You should still use this to synchronize databases, using the Python libraries to actually query them. I would recommend sqlalchemy as a good query level for a database for Python.

+1
source

Source: https://habr.com/ru/post/1742323/


All Articles