Using python wrapper for AWS S3 upload, i want to save a key object in the django models. Using PickledObjectField to store that key object in my model, On saving it says:
Key is not JSON serializable
i have tried by passing key object as json.loads(key_obj)
, but got same error.