bergercookie / item_synchronizer

🔄 Synchronize items from two different sources
MIT License
11 stars 1 forks source link
calendar python synchronization taskwarrior todo todoapp

Item Synchronizer

logo

pre-commit

Coverage Status PyPI version Downloads Code style: black

Description

Synchronize items from two different sources in a bidirectional manner.

This library aims to offer an abstract and versatile way to create, update and/or delete items to keep two "sources" in sync.

These "items" may range from Calendar entries, TODO task lists, or whatever else you want as long as the user registers the appropriate functions/methods to convert from one said item to another.

Usage

The Synchronizer class requires the following Callables to be given, for each one of the sides. See the most up-to-date python types here

Additionally item_synchronizer needs to know what items (their IDs) were inserted, updated and deleted during the call to its main method, sync(). This is dependent on your application at hand. You could either cache the items and their content after each run and compare them with the latest state in the current run. Or, the API of the calendar/task manager, etc. that you are using may allow you to query the items that were modified/inserted/deleted since the last run.

Examples

Let's say you want to bi-directionally synchronize your calendar events with your TODO Task Manager tasks. This way, when you remove calendar event, the correspoding task will be deleted, when you add a new task in your task manager, a new calendar event will be created and when you update the task (e.g., change its description or start time) the changes will reflect in the corresponding calendar entry.

Thus, you have the following and you want to sync the A and B items.

sync0

As described in the previous section, item_synchronizer requires a set of functions which it will call when it needs to insert, update or delete an item from the corresponding side. It also requires an A_to_B bidict persistent across its runs with the item mappings between the two sides before the very latest changes. Notice that, item_synchonizer will be responsible for updating entries in this A_to_B bidict, you do not need to do that manually. You only need to make it persist across the different runs of the Synchronizer.sync() call (e.g., by pickle-ing and unpickle-ing it every time your application exits and starts again.)

Thus, this is the situation that item_synchronizer expects at its first run.

sync1

After the first call to sync() here's the expected results. After this call each event of one side will have a counterpart on the other side and that's also going to be reflected in the provided A_to_B bidict.

sync2

Subsequent calls to sync() will pick up the changes and will insert any new items from each side to the other side accordingly.

Now let's say that item 2 was modified from side A, item 3 from side B and item 21 was deleted from side A.

update-n-delete0

In the subsequent call to sync(), item_synchronizer will forward these changes to the other side appropriately.

update-n-delete1

If there was a conflict, e.g., an item removed from one side and updated from the other, then item_synchronizer supports a series of resolution strategies for handling such conflicts.

resolution-strategy

Installation

Add it as a dependency to either your requirements.txt or to pyproject.toml

[tool.poetry.dependencies]
...
item_synchronizer = "^1.0"
...

Or simply install it with pip if you want to use it locally:

pip3 install item_synchronizer

Projects using it

Projects using this:

Notes