I am sending information between client and django server and I would like to use json to this. I am sending simple information - list of strings. I tried using django.core.serializers, but when I did, I got
AttributeError: 'str' object has no attribute '_meta'
It seems, this can be used only for django objects. How can I serialize simple, python objects?