Skip to main content

A Django ObjectSyncer between a server and multiples clients

Project description

Django Object Syncer

Django application allowing a server instance to track modifications of instance of certain models and push them to remote clients.

In summary, how does it work ?

Two abstract classes exist: VersioningBaseModel and TrackingAndVersioningBaseModel.

The versioning base model have the following fields :

  • a UUID (version 4), unique for this model
  • a version, starting at 1
  • a creation datetime
  • a last edition datetime
  • an inactive flag

The tracking and versioning base model have the following field added to the fields of VersioningBaseModel.

  • an active state by applications

It is then possible to create a monitored Model :

class VersioningFakeClass(TrackingAndVersioningBaseModel):
    """
    A code
    """
    code = models.CharField(max_length=20)

    """
    A name 
    """
    name = models.CharField(max_length=250)

    """
    Tracker
    """
    tracker = FieldTracker()

An Application is a remote application that must be updated with each change. ach application contains a remote Rest API endpoint and an Authorization Key.

For each change, a JobChange is created per application. A cron job will then consume JobChanges by making a POST request on the endpoint API of each application.

At the customer level, they dynamically process the fields to keep only those present in their model (each customer does not need all the fields).

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

django-objectsyncer-1.0.1.tar.gz (9.4 kB view hashes)

Uploaded Source

Built Distribution

django_objectsyncer-1.0.1-py3-none-any.whl (13.1 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