Fork of drf-keyed-list maintained by @bihealth
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:
from drf_keyed_list import KeyedListSerializer
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.
Non-String Keys (e.g. UUIDs)
Per the JSON RFC the keys (a.k.a. "names") in a JSON structure
must be strings. The JSON Encoder in Py2 only accepts strings; in Py3, the encoder accepts some additional types (i.e.
int
, float
, bool
or None
), but these must eventually be converted to strings. Other types are not supported,
including common key types like UUID.
Per the discussion in issue #6, the recommended strategy for non-string keys is to use an expicit (if necessary, custom)
serializer field. This field should implement to_representation
and to_internal_value
to convert the data to a
string. For a UUID, the built-in UUIDField
is sufficient.
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 Distribution
File details
Details for the file drf-keyed-list-bihealth-0.2.1.tar.gz
.
File metadata
- Download URL: drf-keyed-list-bihealth-0.2.1.tar.gz
- Upload date:
- Size: 7.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.9.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c43f456b0190853a185ff7d5288306d3735d4cca1acc9b00a5ff1a04c7d85e6f |
|
MD5 | cc93f9e675fa09f973f75d808d561a1a |
|
BLAKE2b-256 | 72470e5f9017741e29a691908cf9ba6fbbbc7e5991a8474cd615f698e1569875 |