Skip to main content

Modifies the Django serializer such that it fully serializes foreign key relations.

Project description

Nested Django Serializer

An updated version of wadofstuff that is compatible with python3 and Django 4. Used to fully serialize Django model foreign key and many-to-many relations.

Installation

The package is available on pypi and can be installed via

$ pip install nested-django-serializer

To use the package in your Django project, simply add the following variable to your settings.py

SERIALIZATION_MODULES = {
  'json': 'nested_django_serializer.django.serializers.json'
}

Features

  • relations - a list or dictionary of model related fields to be followed and serialized.
  • extras - a list of non-model field properties or callables to be serialized.
  • excludes - a list of fields to be excluded from serialization. The excludes list takes precedence over the fields argument.

Relations

The Nested Django Serializer has the ability to fully serialize referenced Django models as opposed to the default behaviour of simply returning the primary key value.

To override the default behaviour, supply the relations keyword argument to serializers.serialize()

The argument should either be a list of relations to be serialized or a dictionary of key/value pairs where the keys are relations to be serialized and the values are lists of arguments to be passed to the serializer when serializing that relation.

serializers.serialize('json', Group.objects.all(), indent=4, relations=('permissions',))
[
    {
        "pk": 2,
        "model": "auth.group",
        "fields": {
            "name": "session",
            "permissions": [
                {
                    "pk": 19,
                    "model": "auth.permission",
                    "fields": {
                        "codename": "add_session",
                        "name": "Can add session",
                        "content_type": 7
                    }
                }
            ]
        }
    }
]
serializers.serialize('json', Group.objects.all(), indent=4, 
                      relations={'permissions': {'fields': ('content_type', ), 'relations': ('content_type', )}})
[
    {
        "pk": 2,
        "model": "auth.group",
        "fields": {
            "name": "session",
            "permissions": [
                {
                    "pk": 19,
                    "model": "auth.permission",
                    "fields": {
                        "content_type": {
                            "pk": 7,
                            "model": "contenttypes.contenttype",
                            "fields": {
                                "model": "session",
                                "name": "session",
                                "app_label": "sessions"
                            }
                        }
                    }
                }
            ]
        }
    }
]

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

nested_django_serializer-1.1.0.tar.gz (6.1 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file nested_django_serializer-1.1.0.tar.gz.

File metadata

File hashes

Hashes for nested_django_serializer-1.1.0.tar.gz
Algorithm Hash digest
SHA256 2c4b03858b8e2a41a7825d013abae5e6cde4448f7693b231ea6218550a386c31
MD5 d56b13d5fe92d4b4eafe32606c6c453e
BLAKE2b-256 a6b5a6196530fafb02eb3afc4524ef68956094ab555d36fa6d5ad432c281a51e

See more details on using hashes here.

File details

Details for the file nested_django_serializer-1.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for nested_django_serializer-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 6c2da0f4ee16e101242a65f5e6a702ed86472b9d05c5eca878cbdcc461563d4f
MD5 0b9f50632aa4b3a897c8c921f5af080b
BLAKE2b-256 e2e31ef5a59ea7960d26778f256b5d1dc9c1aa7a8d5a5d20cbf327ef4810b057

See more details on using hashes here.

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