4

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?

1 Answer 1

1

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.

Sign up to request clarification or add additional context in comments.

2 Comments

The emphasis of my question is in finding out a python solution equivalent to SymmetricDS, not using SymmetricDS anyway. Appart from that, afaik SymmetricDS does not support SQLite. But thanks for trying to answer it though.
symmetricds claims to now support sqlite on android.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.