Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/swisscom/cleanerversion
CleanerVersion adds a versioning/historizing layer to your relational DB which implements a "Slowly Changing Dimensions Type 2" behavior
https://github.com/swisscom/cleanerversion
django model-history python slowly-changing-dimensions soft-delete versioning
Last synced: 3 months ago
JSON representation
CleanerVersion adds a versioning/historizing layer to your relational DB which implements a "Slowly Changing Dimensions Type 2" behavior
- Host: GitHub
- URL: https://github.com/swisscom/cleanerversion
- Owner: swisscom
- License: apache-2.0
- Archived: true
- Created: 2014-09-08T11:28:31.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2019-02-07T06:22:35.000Z (over 5 years ago)
- Last Synced: 2024-05-21T10:34:17.609Z (6 months ago)
- Topics: django, model-history, python, slowly-changing-dimensions, soft-delete, versioning
- Language: Python
- Size: 1.13 MB
- Stars: 136
- Watchers: 24
- Forks: 53
- Open Issues: 29
-
Metadata Files:
- Readme: README.rst
- Contributing: CONTRIBUTING.rst
- License: LICENSE
Awesome Lists containing this project
- starred-awesome - cleanerversion - CleanerVersion adds a versioning/historizing layer to your relational DB which implements a "Slowly Changing Dimensions Type 2" behavior (Python)
README
.. note:: Please note that development of CleanerVersion has been
**discontinued as of February 2019**. Feel free to fork the
repository.*************************
CleanerVersion for Django
*************************.. image:: https://img.shields.io/travis/swisscom/cleanerversion/master.svg
:target: https://travis-ci.org/swisscom/cleanerversion
.. image:: https://img.shields.io/coveralls/swisscom/cleanerversion/master.svg
:target: https://coveralls.io/r/swisscom/cleanerversion
.. image:: https://img.shields.io/pypi/v/CleanerVersion.svg
:target: https://pypi.python.org/pypi/CleanerVersionAbstract
========CleanerVersion is a solution that allows you to read and write multiple versions of an entry to and from your
relational database. It allows to keep track of modifications on an object over time, as described by the theory of
**Slowly Changing Dimensions** (SCD) **- Type 2**.CleanerVersion therefore enables a Django-based Datawarehouse, which was the initial idea of this package.
Features
========CleanerVersion's feature-set includes the following bullet points:
* Simple versioning of an object (according to SCD, Type 2)
- Retrieval of the current version of the object
- Retrieval of an object's state at any point in time* Versioning of One-to-Many relationships
- For any point in time, retrieval of correct related objects
* Versioning of Many-to-Many relationships
- For any point in time, retrieval of correct related objects
* Migrations, if using in conjunction with Django 1.7 and upwards
* Integration with Django Admin (Credits to @boydjohnson and @peterfarrell)
Prerequisites
=============This code was tested with the following technical components
* Python 2.7 & 3.6
* Django 1.11 & 2.0
* PostgreSQL 9.3.4 & SQLite3Older Django versions
=====================
CleanerVersion was originally written for Django 1.6 and has now been ported up to Django 1.11.CleanerVersion 2.x releases are compatible with Django 1.11 and 2.0. It may
also work with Django 1.9 and 1.10, but note that these versions are not
officially supported and test cases have been removed.Old packages compatible with older Django releases:
* Django 1.6 and 1.7: https://pypi.python.org/pypi/CleanerVersion/1.5.4
* Django 1.8: https://pypi.python.org/pypi/CleanerVersion/1.6.2
* Django 1.9 & 1.10: https://pypi.python.org/pypi/CleanerVersion/2.0.0
Documentation
=============Find a detailed documentation at http://cleanerversion.readthedocs.org/.
Feature requests
================- Querying for time ranges