django-typed-models
django-typed-models copied to clipboard
XML serialization doesn’t work.
The reason is that XML serializer class inherits from base.Serializer and not PythonSerializer which we monkey patch. Solution would be to monkey patch start_object method in XML serializer class, however this would mean copy-pasting 17 lines of code, so maybe it would be better to make some adjustments to Django core.