Description
Store Python objects in Django model fields by serializing them with pickle. It can be useful for trusted internal data where a flexible object field is easier than a rigid schema.
This is a risky storage helper when data can be influenced by users. Pickle data can execute code when loaded, so projects should never deserialize untrusted values and should prefer explicit schemas for long-lived data.