Skip to main content

Synchronize items bi-directionally between two different sources

Project description

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

  • Insertion callable: when called with the contents of an item it should create and return the ID of the newly added item on the other source

  • Update callable: update an item given by the item ID, using the (possibly partial) new contents specified by Item

  • Deletion callable: Delete the item given by the specified ID

  • Conversion callable: convert an item from the format of one source to the format of another.

  • Item Getter callable: Given the ID of an Item of one source return the corresponding item on the other source.

  • A_to_B bidict

    • This should be a bidict mapping IDs of A to the corresponding IDs of B and vice-versa. Given this the item_synchronizer is responsible for keeping it up to date on insertion, update and deletion events. The contents of this bidict should be persistent across the various runs, thus, consider pickle-ing and unpickling its contents to disk

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

  • Currently IDs of items on either side should be of str type.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

item_synchronizer-1.1.5.tar.gz (11.9 kB view hashes)

Uploaded Source

Built Distribution

item_synchronizer-1.1.5-py3-none-any.whl (11.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page