No project description provided
Project description
Keyed Lists for Django REST Framework
This package supports the serialization and deserialization of a list of objects stored in a dict
where a unique
value from the object (often a pk
) is used as the key in the dict. For example,
{
"1": {<other fields for object with id 1>},
"2": {<other fields for object with id 2>},
...
}
Install
pip install drf-keyed-list
Usage
The following is a usage example:
class MySerializer(ModelSerializer):
class Meta:
list_serializer_class = KeyedListSerializer
keyed_list_serializer_field = 'id'
By replacing the list_serializer_class
, this behavior will only be enabled when the many=True
flag is used:
instance = {
"id": "pk_val",
"field1": "val1",
"field2": "val2",
...
}
serializer = MySerializer(data=instance)
# this should work
serializer.is_valid()
serializer.save()
keyed_list = {
"pk_val": {
"field1": "val1",
"field2": "val2",
...
}
}
# many=True will trigger the keyed-list behavior
serializer = MySerializer(data=keyed_list, many=True)
# this should also work
serializer.is_valid()
serializer.save()
NOTE: keyed_list_serializer_field
MUST refer to a Unique field or key collision may occur during serialization,
plus undefined deserializaiton behavior if used in combination with nested writable serializers (e.g.
drf-writable-nested). At this time, the package does not
make any effort to verify that a Unique field has been selected.
Authors
2018, Clayton Daley III
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 Distributions
Built Distribution
File details
Details for the file drf_keyed_list-0.0.2-py3-none-any.whl
.
File metadata
- Download URL: drf_keyed_list-0.0.2-py3-none-any.whl
- Upload date:
- Size: 7.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ac14f11db56b83eba15524c560fe217aadcb2363c39343673ef17bcb0000fc7b |
|
MD5 | e6362b135481d170f6e77785a5a218b7 |
|
BLAKE2b-256 | 36f24dbac73a8d6f718317035cb0aaefff53a561596d5b94b57fceca4d11c17a |