Module python
A Python "serializer". Doesn't do much serializing per se -- just converts to and from basic Python data types (lists, dicts, strings, etc.). Useful as a basis for other serializers.
source linkClasses
Functions
▶ def Deserializer(object_list, *, using=DEFAULT_DB_ALIAS, ignorenonexistent=False, **options) Deserialize simple Python objects back into Django ORM instances.
It's expected that you pass the Python objects themselves (instead of a
stream or a string) to the constructor
Reexports