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 djang
djang
You can use pure Python to do it:
import json list = [1, 2, (3, 4)] # Note that the 3rd element is a tuple (3, 4) json.dumps(list) # '[1, 2, [3, 4]]'