Skip to main content

Allow make deep model copy

Project description

Django Duplicate

example workflow Coverage Status

Django-Duplicate has an util tool for making a deep copy of django model instances

duplicate.utils.duplicate

Creates and returns a new object that is identical to instance.

DuplicateMixin

Mixin for model classes which implements duplicate function as method.

from django.db import models

from duplicate.models import DuplicateMixin


class Book(DuplicateMixin, models.Model):
    title = models.CharField(max_lenght=100)
    author = models.ForegnKey('library.Author')

Let's duplicate (shallow copy) book instance:

book = Book(title='Two Scoops of Django')
boook.save()

book_copy = book.duplicate()

If you wanna do deep (related models gonna be shallow copied) copy use paths argument of duplicate method. paths should be list of relation paths:

book_copy = book.duplicate(paths=['author'])

To shallow copy every relation on some level use * symbol:

book_copy = book.duplicate(paths=['*'])

author.* path would copy also all author relations.

There is also symbol ~ which means "reference relations, but if reference object is duplicated in the context use it instead".

You can override fields like this(You cannot override nested m2m fields):

book_copy = book.duplicate(paths=['author'], override_fields={'author.name': 'Overriden author name'})


from duplicate.utils import CallableValue
book_copy = book.duplicate(paths=['author'], override_fields={'author.name': 'Overriden author name'})

You can also override nested fields with callable that takes instace on which you are overriding field as an argument:

from duplicate.utils import CallableValue

book_copy = book.duplicate(
    paths=['author'],
    override_fields={
        'author.name': CallableValue(lambda author: 'Professional author name' if author.professional else 'Author name')
    }
)

DJANGO_DUPLICATE_KNOWN_RELATIONS

To ensure that code is aware of all possible to duplicate models and relations path project should have setting DJANGO_DUPLICATE_KNOWN_RELATIONS which is a dict with model labels as keys and list of model relations as value:

DJANGO_DUPLICATE_KNOWN_RELATIONS = {
    "duplicate.Author": [
        "book_set",
    ],
    "duplicate.Book": [
        "author",
    ],
}

This app enables check which will throw errors when state of app will not correspond to value of DJANGO_DUPLICATE_KNOWN_RELATIONS.

License

The Django Wicked Historian package is licensed under the FreeBSD License.

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-duplicate-1.0.0.tar.gz (11.7 kB view hashes)

Uploaded Source

Built Distribution

django_duplicate-1.0.0-py3-none-any.whl (9.0 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