1 2 3 4 5 6 7 8 9
import json def encode(object): return json.dumps(object) def decode(string): return json.loads(string)