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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file nested_django_serializer-1.1.0.tar.gz
.
File metadata
- Download URL: nested_django_serializer-1.1.0.tar.gz
- Upload date:
- Size: 6.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2c4b03858b8e2a41a7825d013abae5e6cde4448f7693b231ea6218550a386c31 |
|
MD5 | d56b13d5fe92d4b4eafe32606c6c453e |
|
BLAKE2b-256 | a6b5a6196530fafb02eb3afc4524ef68956094ab555d36fa6d5ad432c281a51e |
File details
Details for the file nested_django_serializer-1.1.0-py3-none-any.whl
.
File metadata
- Download URL: nested_django_serializer-1.1.0-py3-none-any.whl
- Upload date:
- Size: 7.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6c2da0f4ee16e101242a65f5e6a702ed86472b9d05c5eca878cbdcc461563d4f |
|
MD5 | 0b9f50632aa4b3a897c8c921f5af080b |
|
BLAKE2b-256 | e2e31ef5a59ea7960d26778f256b5d1dc9c1aa7a8d5a5d20cbf327ef4810b057 |