Skip to main content

Json Patch support for Django models

Project description

https://travis-ci.org/CptLemming/django-json-patch.png?branch=master

JSON Patch support for Django models.

Documentation

The full documentation is at https://django-json-patch.readthedocs.io.

Install

Install django-json-patch:

pip install django-json-patch

Usage

from json_patch.patch import Patch
from models import Author

authors = Author.objects.all()

add_author = [
    {
        'op': 'add',
        'path': '/0',
        'value': {
            'id': 1,
            'name': 'Bob'
        }
    }
]

patch = Patch(add_author_diff)
patch.apply(authors)

History

0.1.0 (2015-10-02)

  • First release on PyPI.

Project details


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